        :root[data-theme="dark"] {
            --bg-primary: #070808;
            --bg-secondary: #1E2124;
            --bg-tertiary: #23262F;
            --bg-quaternary: #2A2D30;
            --text-primary: #fff;
            --text-secondary: #808891;
            --border-color: rgba(255, 255, 255, 0.1);
        }
        .trades-ticker-section {
            width: 100%;
            margin: -20px 0 10px 0;
            overflow: hidden;
            background: var(--bg-primary);
            padding: 20px 0;
            position: relative;
        }
        
        @media (min-width: 901px) {
            .trades-ticker-section {
                margin-top: -25px;
            }
        }

        .trades-ticker-heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .trades-ticker-heading h3 {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 8px 0;
            color: var(--text-primary);
        }

        .trades-ticker {
            display: flex;
            animation: tickerScroll 60s linear infinite;
            width: max-content;
        }

        .ticker-block {
            display: flex;
            gap: 40px;
            padding-right: 40px;
        }

        @keyframes tickerScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        :root[data-theme="light"] {
            --bg-primary: #ffffff;
            --bg-secondary: #f5f5f5;
            --bg-tertiary: #ffffff;
            --bg-quaternary: #f0f0f0;
            --text-primary: #1A1D1F;
            --text-secondary: #64748b;
            --border-color: rgba(0, 0, 0, 0.1);
        }

        :root {
            --header-height: 56px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* html и body ВСЕГДА тёмные, как хедер - это убирает белую линию сверху */
        html {
            background: #000000 !important;
            margin: 0 !important;
            padding: 0 !important;
            overflow-x: hidden;
            border: none !important;
            border-top: none !important;
            height: 100% !important;
        }
        
        /* body может быть светлым/тёмным в зависимости от темы, но верхняя часть всегда чёрная как хедер */
        body {
            background: var(--bg-primary);
            color: var(--text-primary);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            position: relative;
        }
        
        /* Убираем ВСЕ отступы перед первым элементом body (хедером) - как у футера */
        body > *:first-child {
            margin-top: 0;
            padding-top: 0;
        }

        .hero-layout {
            display: flex;
            align-items: flex-start;
            gap: 48px;
        }
        
        @media (min-width: 901px) {
            .hero-layout .swap-right-column {
                align-self: flex-start;
                padding-top: 40px;
                margin-top: -40px;
            }
            
            .hero-layout .swap-exchange-container {
                margin-top: 0;
            }
        }

        .swap-right-column {
            width: 550px;
            flex-shrink: 0;
        }
        
        @media (min-width: 901px) {
            .swap-right-column {
                padding-top: 40px;
            }
        }
        
        .trades-ticker--mobile-dup {
            display: none;
        }
        
        .trades-ticker--desktop-dup {
            display: none;
        }

        @keyframes tickerScrollReverse {
            from { transform: translateX(-50%); }
            to   { transform: translateX(0); }
        }
        
        /* Дополнительные ленты для десктопа */
        @media (min-width: 901px) {
            .trades-ticker--desktop-dup {
                display: flex;
                margin-top: 40px;
            }
            
            /* Четвертая строка тикера для десктопа, движется вправо */
            #trades-ticker-4 {
                animation: tickerScrollReverse 60s linear infinite;
            }
            
            /* Пятая строка тикера для десктопа, движется влево */
            #trades-ticker-5 {
                animation: tickerScroll 60s linear infinite;
            }
        }

        @media (max-width: 900px) {
            .swap-right-column {
                width: 100%;
                max-width: 100%;
            }
        }

        .features-section {
            max-width: 1200px;
            margin: 180px auto 0 auto;
            padding: 0 20px;
        }
        
        @media (max-width: 900px) {
            .features-section {
                margin: 150px auto 0 auto;
                padding: 0 20px;
            }
        }

        .feature-row {
            display: flex;
            align-items: center;
            gap: 200px;
            margin-bottom: 150px;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .feature-row.fade-in-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 900px) {
            .feature-row {
                flex-direction: column;
                gap: 40px;
                margin-bottom: 60px;
                align-items: center;
                opacity: 0;
                transform: translateY(40px);
                transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            }
            
            .feature-row.fade-in-visible {
                opacity: 1;
                transform: translateY(0);
            }
            
            .feature-row.feature-row--reverse {
                flex-direction: column;
                margin-bottom: 60px;
                align-items: center;
            }
        }

        .feature-row.feature-row--reverse {
            margin-bottom: 100px;
        }

        .feature-content {
            flex: 1;
            max-width: 500px;
        }

        .feature-content h2 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 32px;
            color: var(--text-primary);
            line-height: 1.1;
        }
        
        @media (max-width: 900px) {
            .feature-content {
                max-width: 100%;
                text-align: center;
            }
            
            .feature-content h2 {
                font-size: 24px;
                margin-bottom: 16px;
                text-align: center;
            }
            
            .feature-content p {
                font-size: 14px;
                margin-bottom: 24px;
                text-align: center;
            }
            
            .feature-btn {
                margin: 0 auto;
                display: block;
            }
        }

        .feature-content p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .feature-btn {
            background: #2563EB;
            color: white;
            border: none;
            border-radius: 16px;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .feature-images {
            flex: 1;
            position: relative;
            max-width: 480px;
        }
        
        @media (max-width: 900px) {
            .feature-images {
                max-width: 225px;
                width: auto;
                flex: none;
                margin: 0 auto;
            }
            
            /* Удобный EHODI обмен - больше размер */
            .feature-row:not(.feature-row--reverse) .feature-images {
                max-width: 270px;
            }
            
            /* Партнерская программа - увеличиваем размер на мобилке */
            .feature-row--reverse .feature-images {
                max-width: 300px;
            }
            
            .feature-images .image-container {
                border-radius: 16px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            }
            
            .feature-images img {
                width: 100%;
                height: auto;
                object-fit: contain;
                border-radius: 16px;
            }
            
            .desktop-exchange-image {
                display: none !important;
            }
            
            .mobile-exchange-image {
                display: block !important;
            }
            
            .desktop-affiliate-image {
                display: none !important;
            }
            
            .mobile-affiliate-image {
                display: block !important;
            }
        }
        
        @media (min-width: 901px) {
            .desktop-exchange-image {
                display: block !important;
            }
            
            .mobile-exchange-image {
                display: none !important;
            }
            
            .desktop-affiliate-image {
                display: block !important;
            }
            
            .mobile-affiliate-image {
                display: none !important;
            }
        }

        .feature-images .image-container {
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .feature-images img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 24px;
        }

        /* Чуть уменьшаем скрин поддержки, чтобы он не выглядел тяжелее партнёрской карточки */
        .desktop-support-help-image {
            max-width: 85%;
            margin-left: auto;
            margin-right: auto;
        }

        .trade-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            margin-bottom: 8px;
            border-radius: 12px;
            animation: slideInFromTop 0.6s ease-out;
        }

        .trade-item .trade-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .trade-item .trade-currencies {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .trade-item .trade-arrow {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .trade-item .trade-pair {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .trade-item .trade-timestamp {
            font-size: 11px;
            color: var(--text-tertiary);
        }

        .trade-item .trade-amounts {
            text-align: right;
        }

        .trade-item .trade-amounts .primary {
            font-size: 14px;
            font-weight: 700;
        }

        .trade-item .trade-amounts .secondary {
            font-size: 11px;
            color: var(--text-tertiary);
        }


        /* Header styles - точно как футер, без отступов сверху */
        .header {
            position: relative;
            padding: 16px 20px !important;
            border: none !important;
            border-bottom: none !important;
            border-top: none !important;
            background: #000000;
            z-index: 1003;
            margin: 0;
            top: 0;
            box-sizing: border-box;
        }
        
        /* Убираем любые зазоры между html и body */
        html, body {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }
        
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 32px !important;
            min-height: 32px !important;
            max-height: 32px !important;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo span {
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            white-space: nowrap;
            color: #ffffff;
        }

        /* Hero */
        .marker-text-container.hero-left {
            justify-content: flex-start;
            padding-left: 0;
        }

        .hero-subtitle {
            color: var(--text-primary);
            font-size: 18px;
            margin-top: 24px;
            max-width: 500px;
            font-family: var(--font-family-primary);
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
            letter-spacing: -0.01em;
        }

        .registration-widget {
            margin-top: 32px;
            max-width: 380px;
            margin-left: -5px;
        }

        .registration-form {
            display: flex;
            background: rgba(128, 128, 128, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(128, 128, 128, 0.2);
            border-radius: 30px;
            padding: 6px;
            gap: 8px;
        }

        .registration-form input {
            flex: 1;
            background: none;
            border: none;
            padding: 12px 20px;
            color: var(--text-primary);
            font-size: 15px;
            outline: none;
            font-weight: 400;
            font-family: var(--font-family-primary);
            letter-spacing: -0.01em;
        }

        .registration-form button {
            background: #2563EB;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            font-family: var(--font-family-primary);
            letter-spacing: -0.01em;
        }

        .registration-social-links {
            margin-top: 35px;
        }

        .social-caption {
            font-family: var(--font-family-primary);
            font-weight: var(--font-weight-medium);
            letter-spacing: -0.01em;
            color: var(--text-primary);
        }

        .social-icons-row,
        .email-icon-row {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .email-icon {
            width: 65px;
            height: 65px;
            object-fit: contain;
            margin-top: -10px;
        }

        /* Swap form card */
        .swap-exchange-container {
            margin: 0 0 24px 0;
        }
        
        @media (min-width: 901px) {
            .swap-exchange-container {
                padding-top: 30px;
            }
        }

        .swap-exchange-form {
            border-radius: 20px;
            padding: 70px 24px 24px 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 100%;
            box-sizing: border-box;
            position: relative;
        }
        
        @media (min-width: 901px) {
            .swap-exchange-form {
                margin-top: -30px;
            }
        }
        
        @media (max-width: 900px) {
            .swap-exchange-form {
                border-radius: 16px;
            }
        }

        .swap-tabs {
            display: none !important; /* Скрываем весь блок с кнопкой */
        }
        .swap-tab,
        button[data-i18n="buy_sell_tab"],
        button.swap-tab {
            display: none !important; /* Скрываем кнопку "Купить/Продать" */
        }
        /* Старые стили закомментированы
        .swap-tabs {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            border-bottom: none;
        }

        .swap-tab {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
            padding: 12px 24px;
            cursor: pointer;
        }
        
        /* Независимый элемент "Купить/Продать" для управления */
        .swap-buy-sell-text {
            position: absolute;
            top: 20px;
            left: 24px;
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 600;
            z-index: 10;
            margin: 0;
            padding: 0;
        }
        
        @media (max-width: 900px) {
            .swap-buy-sell-text {
                top: 8px;
                left: 16px;
                font-size: 18px;
            }
        }
        
        /* Независимый заголовок формы обмена для управления */
        .swap-form-header {
            position: relative;
            width: 100%;
            margin-bottom: 24px;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        
        /* Независимый элемент "Наш курс" для управления */
        .swap-rate-display {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
            padding: 0;
        }
        
        .swap-rate-label {
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 400;
        }
        
        .swap-rate-value {
            color: var(--text-primary);
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Спиннер обратного отсчета */
        .swap-rate-spinner {
            position: relative;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 6px;
        }
        
        .spinner-svg {
            width: 20px;
            height: 20px;
            position: absolute;
            top: 0;
            left: 0;
            transform: rotate(-90deg);
        }
        
        .spinner-circle {
            stroke: #2563EB;
            transition: stroke-dashoffset 1s linear;
        }
        
        .spinner-text {
            position: relative;
            font-size: 9px;
            font-weight: 600;
            color: var(--text-primary);
            z-index: 1;
            line-height: 1;
        }
        
        @media (min-width: 901px) {
            .swap-rate-spinner {
                width: 22px;
                height: 22px;
            }
            
            .spinner-svg {
                width: 22px;
                height: 22px;
            }
            
            .spinner-text {
                font-size: 10px;
            }
        }
        
        @media (min-width: 901px) {
            .swap-form-header {
                margin-bottom: 24px;
            }
            
            .swap-rate-label {
                font-size: 13px;
            }
            
            .swap-rate-value {
                font-size: 13px;
            }
        }
        
        @media (max-width: 900px) {
            .swap-form-header {
                margin-bottom: 0;
                padding: 0;
                display: flex;
                justify-content: flex-end;
                align-items: center;
                position: relative;
                height: 0;
                overflow: visible;
            }
            
            .swap-rate-display {
                position: absolute;
                top: 15px;
                right: 16px;
                margin: 0;
                padding: 0;
            }
        }

        .swap-tab-text {
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
            padding: 12px 24px;
        }


        .swap-exchange-fields {
            position: relative;
        }

        .swap-exchange-field {
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .swap-field-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .swap-field-header label {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
        }

        .swap-input-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .currency-icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .swap-amount-input {
            flex: 1;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            font-weight: 600;
            outline: none;
            min-width: 0;
        }

        .swap-amount-output {
            color: var(--text-secondary);
        }

        .swap-swap-btn {
            background: #2563EB;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            position: relative;
            margin: -24px auto;
            z-index: 20;
        }
        
        @media (min-width: 901px) {
            .swap-swap-btn {
                margin-top: -35px !important;
                margin-bottom: -20px !important;
            }
        }

        .swap-exchange-btn {
            width: 100%;
            background: #2563EB;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        /* FAQ */
        .swap-faq-section {
            background: #070808;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            margin-bottom: 60px;
        }

        .swap-faq-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .swap-faq-title {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .swap-faq-toggle2 {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .swap-faq-content2 {
            display: none;
            margin-top: 24px;
            border-top: 1px solid var(--border-color);
            padding-top: 24px;
        }

        .swap-faq-item {
            margin-bottom: 24px;
        }

        .swap-faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 16px;
            background: var(--bg-quaternary);
            border-radius: 8px;
            transition: background-color 0.2s ease;
        }

        .swap-faq-question span {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
        }

        .swap-faq-arrow {
            color: var(--text-secondary);
            transition: transform 0.3s ease;
        }

        .swap-faq-answer {
            display: none;
            padding: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 14px;
        }

        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            line-height: 1.5;
        }

        .main-nav a:hover {
            color: #2563EB;
        }

        .main-nav a.active {
            color: #2563EB;
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .login-btn {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .login-btn:hover {
            color: #2563EB;
        }

        .register-btn {
            background: #2563EB;
            color: #fff;
            text-decoration: none;
            padding: 6px 16px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 400;
            border: none;
            display: inline-block;
            box-shadow: none;
            transition: background 0.2s;
        }

        .register-btn:hover {
            background: #1d4ed8;
        }
        
        .login-btn {
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }

        .login-btn:hover {
            color: #2563EB;
        }

        /* Десктопные стили для хедера */
        @media (min-width: 901px) {
            .desktop-only {
                display: flex;
            }
            
            .main-nav.desktop-only {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .header {
                border-bottom: 1px solid var(--border-color);
            }
            
            .header-inner {
                height: 40px;
            }
        }
        
        .header-controls {
            gap: 16px;
        }

        .header .lang-switch,
        .header .theme-switch,
        .header .burger-menu-btn {
            color: #ffffff;
        }

        .header-divider {
            width: 1px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
        }

        .mobile-only {
            display: none;
        }

        @media (max-width: 900px) {
            .desktop-only {
                display: none;
            }
            
            .mobile-only {
                display: flex;
                align-items: center;
                gap: 10px;
            }
            
            .header {
                margin-top: 0 !important;
            }
            
            body > header:first-child {
                margin-top: 0 !important;
            }
            
            /* Заголовок с отступом от хедера */
            main .marker-text-container {
                padding-top: 0;
                margin-top: -80px;
            }
            
            /* Уменьшаем отступ у подзаголовка */
            main .left-content p[data-i18n="hero_subtitle"],
            main .hero-subtitle {
                margin-top: 0px;
            }
            
            /* Увеличиваем расстояние между подзаголовком и формой обмена */
            main .swap-exchange-container {
                margin-top: 24px;
            }
            
            /* Скрываем поле регистрации и кнопку в мобильной версии */
            main .registration-widget {
                display: none;
            }
            
            /* Изменяем layout контейнера - убираем боковые отступы */
            main .container,
            main .container.hero-layout {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                max-width: 100%;
                margin: 0;
                padding: 0;
                gap: 0;
                justify-content: flex-start;
            }

            main .hero-layout {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                max-width: 100%;
                margin: 0;
                padding: 0;
                gap: 24px;
            }
            
            main .left-content {
                width: 100%;
                max-width: 100%;
            }
            
            /* Компактные заголовки на мобильных */
            main .marker-text-container {
                padding: 16px 20px;
            }
            
            main .big-text {
                font-size: 36px;
                line-height: 1.1;
            }
            
            main .second-line {
                font-size: 36px;
                line-height: 1.1;
            }
            
            main .marker-text {
                font-size: 36px;
            }
            
            main .hero-subtitle {
                font-size: 15px;
                margin-top: 12px;
                line-height: 1.4;
            }
            
        main {
            padding: 32px 0;
        }
            
            /* Форма обмена на всю ширину */
            main .container .swap-exchange-form,
            main .container div .swap-exchange-form,
            main .container .widget,
            main .widget,
            main div.widget,
            main .swap-exchange-form {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                height: auto;
                min-height: unset;
                margin: 0;
            }
            
            /* Поля формы на всю ширину */
            main .exchange-fields,
            main div.exchange-fields,
            main .swap-exchange-container .exchange-fields {
                width: 100%;
                max-width: 100%;
                margin: 0;
            }
            
            /* Контейнер формы на всю ширину */
            main .swap-exchange-container,
            main .swap-exchange-form {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            /* Компактный padding для формы */
            main .swap-exchange-form {
                padding: 16px;
                border-radius: 16px;
            }
            
            /* Контейнер формы на всю ширину */
            main .swap-exchange-container {
                width: 100%;
                max-width: 100%;
                margin: 0;
                padding: 0;
            }
            
            /* Компактные внутренние элементы */
            main .swap-input-group {
                width: 100%;
                max-width: 100%;
                gap: 8px;
                flex-wrap: nowrap;
            }
            
            main .swap-currency-selector {
                width: auto;
                min-width: 120px;
                flex-shrink: 0;
                padding: 8px 12px;
            }
            
            /* Компактные селекторы валют */
            main .swap-currency-selector .currency-icon {
                width: 20px;
                height: 20px;
                flex-shrink: 0;
            }
            
            main .swap-currency-selector span {
                font-size: 13px;
                white-space: nowrap;
            }
            
            main .swap-currency-selector svg {
                width: 14px;
                height: 14px;
                flex-shrink: 0;
            }
            
            main .swap-amount-input {
                flex: 1;
                min-width: 0;
                font-size: 20px;
                padding: 0;
            }
            
            /* Компактные табы */
            main .swap-tabs {
                margin-bottom: 16px;
                padding: 8px 16px 0 16px;
                border-bottom: none;
            }
            
            main .swap-tab {
                font-size: 15px;
                padding: 8px 16px;
            }
            
            main .swap-field-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                margin-bottom: 8px;
            }
            
            main .swap-field-header label {
                font-size: 12px;
                font-weight: 500;
            }
            
            /* Компактная кнопка обмена */
            main .swap-exchange-btn {
                width: 100%;
                max-width: 100%;
                margin-top: 16px;
                padding: 12px;
                font-size: 15px;
            }
            
            /* Компактная кнопка swap */
            main .swap-swap-btn {
                width: 36px;
                height: 36px;
            }
            
            main .swap-swap-btn svg {
                width: 18px;
                height: 18px;
            }

            main .swap-right-column {
                width: 100%;
                max-width: 100%;
                margin: 10px 0 0 0;
            }
            
            main .container > div {
                width: 100%;
                min-width: 0;
                max-width: none;
            }
            
            .swap-exchange-container {
                margin-top: -20px;
                width: 100%;
            }
            
            /* Компактные поля формы */
            main .swap-exchange-field,
            main div.swap-exchange-field,
            main .swap-exchange-fields .swap-exchange-field {
                margin-left: 0;
                margin-right: 0;
                margin-bottom: 12px;
                width: 100%;
                max-width: 100%;
                min-width: 0;
                padding: 14px;
                box-sizing: border-box;
                flex: none;
            }

            /* FAQ на всю ширину с небольшим отступом от формы */
            main .swap-faq-section {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                padding: 16px 20px;
                margin-top: 15px;
                margin-bottom: 30px;
                margin-left: 0;
                margin-right: 0;
            }

            main .swap-faq-section > div:first-child {
                min-height: unset;
            }
            
            /* Убираем все ограничения ширины внутри полей */
            .swap-input-group,
            div.swap-input-group {
                width: 100%;
                max-width: none;
                min-width: 100%;
                flex: none;
            }
            
            /* Компактные поля формы */
            main .swap-exchange-fields,
            main div.swap-exchange-fields {
                width: 100%;
                max-width: none;
                margin-top: 40px;
                gap: 12px;
                display: flex;
                flex-direction: column;
            }
            
            /* Компактные табы */
            main .swap-tabs {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 16px;
                margin-top: -10px;
                padding: 8px 16px 0 16px;
                position: relative;
                text-align: left;
                border-bottom: none;
            }
            
            
            /* Позиционируем "Купить / Продать" слева */
            .swap-tab.active,
            .swap-tab {
                margin-top: 0;
                margin-left: 0;
                margin-right: auto;
                border: none;
                position: relative;
                font-size: 19px;
                flex-shrink: 0;
                width: auto;
                text-align: left;
            }
            
            /* Убираем левую границу, но оставляем нижнюю */
            main .swap-tabs .swap-tab,
            main .swap-tabs .swap-tab.active,
            main button.swap-tab,
            main button.swap-tab.active {
                border: none;
            }
            
            
            .header {
                padding: 12px 14px;
            }
            
            .header-inner {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0;
                height: 56px;
                max-width: 100%;
            }
            
            .logo span {
                font-size: 18px;
                letter-spacing: 0.08em;
            }
            
            .header-controls {
                gap: 6px;
            }
            
            .header-controls .lang-switch,
            .header-controls .theme-switch,
            .burger-menu-btn {
                border: none;
                border-radius: 12px;
                height: 40px;
                width: 40px;
                background: transparent;
                /* всегда белые иконки, независимо от темы */
                color: #ffffff;
            }
            
            .burger-menu-btn {
                display: flex;
            }
            
            .burger-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                display: none;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 0;
                z-index: 1101;
                pointer-events: none;
                background: transparent;
                overflow-y: auto;
                border-top: none;
            }
            
            /* Убеждаемся что хедер всегда темный */
            .header {
                background: #000000 !important;
            }
            
            [data-theme="light"] .header {
                background: #000000 !important; /* Хедер всегда темный */
            }
            
            /* Хедер остается на месте и не меняет цвет */
            body.burger-menu-open .header {
                z-index: 1102;
                position: relative;
                background: #000000 !important;
                opacity: 1 !important;
            }
            
            body.burger-menu-open .header-inner {
                background: #000000 !important;
                opacity: 1 !important;
            }
            
            /* Плавное появление меню */
            .burger-menu-card {
                animation: slideDown 0.3s ease-out;
            }
            
            @keyframes slideDown {
                from {
                    transform: translateY(-100%);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }
            
            .burger-menu.is-open {
                display: flex;
                pointer-events: auto;
            }
            
            .burger-menu-card {
                width: 100%;
                max-width: 100%;
                background: #000000;
                border: none;
                border-radius: 0;
                padding: 20px;
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
                display: flex;
                flex-direction: column;
                gap: 0;
            }
            
            [data-theme="light"] .burger-menu-card {
                background: #ffffff;
            }
            
            /* Скрываем заголовок меню, так как хедер остается на месте */
            .burger-menu-card-header {
                display: none;
            }
            
            .burger-nav {
                padding: 0;
                gap: 0;
                display: flex;
                flex-direction: column;
            }
            
            .burger-nav-link {
                display: inline-flex;
                padding: 10px 0;
                border-radius: 0;
                font-size: 14px;
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                font-weight: 300;
                letter-spacing: 0.01em;
                border: none;
                background: transparent;
                color: rgba(255, 255, 255, 0.9);
                text-align: left;
                width: auto;
                align-self: flex-start;
                -webkit-tap-highlight-color: transparent;
                box-shadow: none;
                outline: none;
                border: none !important;
                text-decoration: none !important;
            }
            
            [data-theme="light"] .burger-nav-link {
                color: #000000;
            }
            
            .burger-nav-link:hover,
            .burger-nav-link:focus,
            .burger-nav-link:active {
                color: #2563EB;
                background: transparent;
                outline: none;
                text-decoration: none !important;
            }
            
            [data-theme="light"] .burger-nav-link:hover,
            [data-theme="light"] .burger-nav-link:focus,
            [data-theme="light"] .burger-nav-link:active {
                color: #2563EB;
                background: transparent;
            }
            
            .burger-menu-divider {
                width: 100%;
                height: 1px;
                background: rgba(255, 255, 255, 0.1);
                margin: 8px 0;
            }
            
            [data-theme="light"] .burger-menu-divider {
                background: rgba(0, 0, 0, 0.1);
            }
            
            .burger-auth-buttons {
                display: flex;
                flex-direction: row;
                gap: 12px;
                padding-top: 8px;
                width: 100%;
                align-items: stretch;
                justify-content: center;
            }
            
            .burger-nav-link--login,
            .burger-nav-link--register {
                width: 100% !important;
                height: 40px;
                padding: 0;
                border-radius: 12px;
                font-size: 14px;
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                font-weight: 400;
                letter-spacing: 0.01em;
                flex: 1 1 0;
                min-width: 0;
                max-width: none;
                -webkit-tap-highlight-color: transparent;
                box-shadow: none;
                border: none;
                outline: none;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .burger-nav-link--login {
                background: transparent;
                border: none;
                color: #ffffff;
            }
            
            .burger-nav-link--login:hover {
                color: #2563EB;
                background: transparent;
            }
            
            [data-theme="light"] .burger-nav-link--login {
                color: #000000;
            }
            
            .burger-nav-link--register {
                background: #1c4ed8;
                color: #ffffff;
                border: none;
                border-radius: 20px;
            }
            
            .burger-nav-link--register:hover {
                background: #1c4ed8;
                color: #ffffff;
            }
            
            /* Кнопка регистрации всегда белый текст в любой теме */
            [data-theme="light"] .burger-nav-link--register {
                color: #ffffff !important;
                background: #1c4ed8 !important;
            }
            
            /* Кнопка регистрации при наведении в светлой теме */
            [data-theme="light"] .burger-nav-link--register:hover {
                color: #ffffff !important;
                background: #1c4ed8 !important;
            }
            
            .burger-menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.4);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                z-index: 1100;
                display: none;
            }
            
            .burger-menu-overlay.is-open {
                display: block;
            }
            
            /* Размытие основного контента когда меню открыто */
            body.burger-menu-open {
                position: relative;
                /* Убираем overflow: hidden чтобы можно было скроллить */
            }
            
            body.burger-menu-open main,
            body.burger-menu-open .hero-section,
            body.burger-menu-open .swap-exchange-container,
            body.burger-menu-open > *:not(.header):not(.burger-menu):not(.burger-menu-overlay) {
                filter: blur(5px);
                transition: filter 0.3s ease;
                /* Убираем pointer-events: none чтобы можно было кликать для закрытия меню */
            }
            
            /* Убираем размытие с хедера */
            body.burger-menu-open .header {
                filter: none !important;
            }
        }

        @media (min-width: 901px) {
            .burger-menu,
            .burger-menu-overlay {
                display: none !important;
            }
        }

        .theme-switch {
            background: none;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 6px;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 34px;
            width: 34px;
        }

        .theme-switch:hover {
            color: #ffffff;
        }

        .lang-switch {
            background: none;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 4px;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 28px;
        }

        .lang-switch:hover {
            color: #ffffff;
        }

        .lang-switch svg {
            width: 20px;
            height: 20px;
        }

        .burger-menu-btn {
            background: none;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 4px;
            display: none;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;
            height: 34px;
            width: 34px;
        }
        
        .burger-menu-btn:hover {
            opacity: 0.7;
        }

        @media (max-width: 900px) {
            .header .burger-menu-btn {
                display: flex !important;
            }
        }
        
        .theme-switch svg {
            width: 21px;
            height: 21px;
        }

        /* Main content styles */
        main {
            flex: 1;
            padding: 60px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        @media (min-width: 901px) {
            .left-content {
                width: 400px;
            }
            
            /* На планшетах и десктопах форма имеет разумные ограничения */
            main .swap-exchange-form {
                max-width: 600px;
                margin: -40px auto 0;
            }
            
            main .swap-right-column {
                max-width: 600px;
                margin: 0 auto;
                padding-top: 40px;
            }
            
            main .swap-faq-section {
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (min-width: 1200px) {
            /* На больших экранах форма может быть еще шире */
            main .swap-exchange-form {
                max-width: 700px;
            }
            
            main .swap-right-column {
                max-width: 700px;
            }
            
            main .swap-faq-section {
                max-width: 700px;
            }
        }
        
        @media (max-width: 900px) {
            .left-content {
                width: 100%;
                max-width: 100%;
            }
        }

        .title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.5;
            max-width: 500px;
        }

        /* Widget styles */
        .widget {
            width: 400px;
            background: var(--bg-tertiary);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        }

        .exchange-field {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
        }

        .exchange-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .exchange-input {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        input {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            width: 100%;
            outline: none;
        }

        .crypto-select {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--bg-quaternary);
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .crypto-select:hover {
            background: var(--bg-secondary);
        }

        .crypto-icon {
            width: 24px;
            height: 24px;
        }

        .exchange-button {
            width: 100%;
            padding: 16px;
            background: #2563EB;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 16px;
        }

        .exchange-button:hover {
            background: #1d4ed8;
        }

        .exchange-rate {
            margin-top: 16px;
            padding: 16px;
            background: var(--bg-secondary);
            border-radius: 12px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .rate-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .rate-row:last-child {
            margin-bottom: 0;
        }

        /* Footer styles */
        .footer {
            background: #000000;
            padding: 40px 20px;
            border-top: 1px solid var(--border-color);
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #808891;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #2563EB;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: #ffffff;
            font-weight: 600;
            text-transform: uppercase;
        }

        .footer-description {
            color: #808891;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            color: #808891;
            transition: color 0.2s;
        }

        .footer-social a:hover {
            color: #2563EB;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
        }

        .footer-bottom p {
            color: #808891;
            font-size: 14px;
            margin: 0;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .left-content {
                width: 100%;
                max-width: 600px;
            }

            /* Убираем ограничения ширины для всех элементов */
            .container > div {
                width: auto;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .currency-icon::after {
            display: none;
        }
        
        /* Принудительно показываем только первый элемент */
        .currency-icon > *:first-child {
            display: block;
        }
        
        /* Скрываем все остальные элементы */
        .currency-icon > *:not(:first-child) {
            display: none;
        }
        
        .currency-icon > * {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .exchange-input {
            flex: 1 1 0;
            background: none;
            border: none;
            outline: none;
            font-size: 15px;
            color: #22305a;
            font-weight: 500;
            padding: 0 6px;
            min-width: 0;
            height: 52px;
        }
        .exchange-input:read-only {
            color: #b0b8c9;
            background: none;
            cursor: default;
        }
        .exchange-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 10px;
        }
        .arrow-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            transition: transform 0.2s;
        }
        .arrow-btn svg {
            width: 22px;
            height: 22px;
        }
        .arrow-btn:hover {
            transform: rotate(90deg);
        }
        .exchange-submit {
            width: 100%;
            background: #325ecb;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 17px;
            font-weight: 700;
            padding: 12px 0;
            margin-top: 10px;
            cursor: pointer;
            transition: background 0.2s;
            box-shadow: 0 2px 8px 0 rgba(50,94,203,0.08);
        }
        .exchange-submit:hover {
            background: #2047a0;
        }
        @media (max-width: 900px) {
            .exchange-form { padding: 32px 8px 24px 8px; }
            .exchange-title { font-size: 28px; }
            .exchange-fields { flex-direction: column; gap: 18px; }
            .exchange-arrow { padding-bottom: 0; }
            .exchange-submit { font-size: 20px; padding: 16px 0; margin-top: 18px; }
        }
        @media (max-width: 600px) {
            .exchange-form { max-width: 99vw; border-radius: 16px; }
            .exchange-title { font-size: 20px; }
            .exchange-label { font-size: 15px; }
            .currency-btn { font-size: 15px; padding: 6px 10px 6px 8px; }

            .exchange-input-group { height: 44px; }
            .exchange-input { font-size: 15px; padding: 0 6px; }
            .exchange-submit { font-size: 16px; padding: 10px 0; }
        }
        html[data-theme="dark"] .exchange-form {
            background: var(--bg-primary);
            box-shadow: 0 8px 48px 0 rgba(20,24,40,0.18), 0 1.5px 8px 0 rgba(20,24,40,0.08);
        }
        html[data-theme="dark"] .exchange-title,
        html[data-theme="dark"] .exchange-label,
        html[data-theme="dark"] .currency-btn,
        html[data-theme="dark"] .exchange-input {
            color: #f5f6fa;
        }
        html[data-theme="dark"] .exchange-input-group {
            background: #23262f;
            border-color: #23262f;
        }
        html[data-theme="dark"] .currency-btn {
            background: #23262f;
        }
        html[data-theme="dark"] .currency-btn:hover {
            background: #2a2d30;
        }
        html[data-theme="dark"] .exchange-submit {
            background: #2563eb;
            color: #fff;
        }
        html[data-theme="dark"] .exchange-submit:hover {
            background: #1d4ed8;
        }
        html[data-theme='light'] .exchange-form {
            border: 1px solid #e5e7eb !important;
        }
        .exchange-history-widget.empty-widget {
            border: 1px solid #23272f;
        }

        /* Стили для новой формы обмена */
        .swap-exchange-form {
            background: var(--bg-tertiary);
        }
        
        .swap-exchange-field {
            background: var(--bg-secondary);
        }
        
        .swap-faq-section {
            background: var(--bg-tertiary);
        }
        
        html[data-theme="dark"] .swap-exchange-field {
            background: #141414;
        }
        
        html[data-theme="dark"] .swap-faq-section {
            background: #1f1f1f;
        }
        
        @media (max-width: 900px) {
            .swap-exchange-container {
                padding: 0 16px;
                margin: 20px auto 40px auto;
            }
            
            .swap-exchange-header h1 {
                font-size: 32px !important;
            }
            
            .swap-exchange-header > div {
                flex-direction: column !important;
                gap: 8px !important;
            }
            
            main .swap-exchange-form {
                padding: 24px 16px;
                border-radius: 16px;
            }
            
            .swap-tabs {
                flex-direction: column !important;
                gap: 8px !important;
                border-bottom: none !important;
            }
            
            .swap-tab {
                text-align: center !important;
                border-bottom: none !important;
                border-left: none !important;
                margin-bottom: 0 !important;
            }
            
            .swap-tab.active {
                border-left: none !important;
                border-bottom-color: transparent !important;
            }
            
            .swap-input-group {
                flex-direction: row !important;
                gap: 16px !important;
                margin-top: 13px !important;
            }
            
            .swap-currency-selector {
                min-width: auto !important;
                justify-content: center !important;
                height: 44px !important;
                padding: 16px 12px !important;
            }
            
            /* Размытый фон для верхних 30% экрана */
            .swap-currency-dropdown::before {
                content: '' !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                height: 30% !important;
                background: rgba(0, 0, 0, 0.5) !important;
                backdrop-filter: blur(10px) !important;
                z-index: 9998 !important;
            }
            
            /* Блокируем скролл страницы когда дропдаун открыт */
            body.dropdown-open {
                overflow: hidden !important;
                position: fixed !important;
                width: 100% !important;
            }
            
            /* Дропдаун во всю ширину экрана в мобильной версии */
            .swap-currency-dropdown {
                position: fixed !important;
                top: 30% !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 100vw !important;
                height: 70vh !important;
                max-height: none !important;
                margin: 0 !important;
                border-radius: 20px 20px 0 0 !important;
                z-index: 9999 !important;
                padding: 24px !important;
                background: #ffffff !important;
                opacity: 1 !important;
                border: none !important;
                overflow-y: auto !important;
            }
            
            /* Темная тема для дропдауна */
            html[data-theme="dark"] .swap-currency-dropdown {
                background: #070808 !important;
                opacity: 1 !important;
            }
            
            /* Поднимаем кнопку свапа в мобильной версии */
            .swap-swap-btn {
                margin-top: -35px !important;
                width: 36px !important;
                height: 36px !important;
            }
            
            /* Кнопка "Обменять" растягивается */
            main .swap-exchange-btn {
                width: 100%;
                max-width: 600px;
                min-width: 0;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .swap-exchange-header h1 {
                font-size: 28px;
            }
            
            main .swap-exchange-form {
                padding: 18px 12px;
            }
            
            main .swap-exchange-field {
                padding: 14px;
            }
            
            main .swap-field-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }
        html[data-theme="dark"] .swap-exchange-form {
            background: #070808 !important;
            border: 1.5px solid rgba(255,255,255,0.10) !important;
        }
        html[data-theme="light"] .swap-exchange-form {
            background: #ffffff !important;
            border: 1.5px solid #e3e7ee !important;
        }
        
        /* Секция описания EHODI */
        .ehodi-description-section {
            width: 100%;
            max-width: 1000px;
            margin: 300px auto 80px auto;
            padding: 0 24px;
            box-sizing: border-box;
        }
        
        .ehodi-description-title {
            font-size: 38px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 60px -80px !important;
            text-align: left;
        }
        
        .ehodi-description-content {
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            text-align: left;
            margin-left: -80px;
            margin-right: auto;
        }
        
        @media (min-width: 901px) {
            .ehodi-description-content {
                max-width: 900px;
            }
        }
        
        @media (max-width: 1200px) {
            .ehodi-description-content {
                margin-left: -40px;
            }
            
            .ehodi-description-title {
                margin-left: -40px;
            }
        }
        
        @media (max-width: 900px) {
            .ehodi-description-section {
                margin: 60px auto 50px auto;
                padding: 0 16px;
                text-align: center;
            }
            
            .ehodi-description-content {
                margin-left: 0;
            }
            
            .ehodi-description-title {
                margin: 0 0 50px 0 !important;
                font-size: 24px;
                text-align: center;
            }
        }
        
        .ehodi-description-text {
            font-size: 18px;
            line-height: 1.9;
            color: #808891;
            margin: 0 0 28px 0;
            font-weight: 400;
            letter-spacing: 0.01em;
            text-align: left;
        }
        
        .ehodi-description-text:last-child {
            margin-bottom: 0;
        }
        
        .ehodi-description-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .ehodi-description-text--highlight {
            font-size: 19px;
            font-weight: 500;
            color: #808891;
            margin-top: 36px;
            padding-top: 0;
            border-top: none;
        }
        
        .ehodi-description-text--highlight strong {
            color: #ffffff;
            font-weight: 700;
        }
        
        @media (max-width: 900px) {
            .ehodi-description-text {
                font-size: 16px;
                line-height: 1.8;
                margin-bottom: 24px;
            }
            
            .ehodi-description-text--highlight {
                font-size: 17px;
                margin-top: 28px;
                padding-top: 0;
            }
        }
        
        html[data-theme="dark"] .ehodi-description-content {
            background: transparent;
            border: none;
        }
        
        html[data-theme="light"] .ehodi-description-content {
            background: transparent;
            border: none;
        }
        
        /* Блок "Свяжитесь с нами" */
        .contact-us-section {
            width: 100%;
            max-width: 1000px;
            margin: 150px auto 80px auto;
            padding: 0 24px;
            box-sizing: border-box;
            text-align: center;
        }
        
        .contact-us-title {
            font-size: 46px !important;
            font-weight: 600;
            color: #1e3a8a;
            margin: 0;
            text-align: center;
        }
        
        .contact-us-button {
            display: inline-block;
            background: #2563EB;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            padding: 14px 32px;
            border-radius: 12px;
            text-decoration: none;
            transition: background 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 40px;
        }
        
        .contact-us-button:hover {
            background: #1d4ed8;
        }
        
        @media (max-width: 900px) {
            .contact-us-section {
                margin: 60px auto 60px auto;
                padding: 0 16px;
            }
            
            .contact-us-title {
                font-size: 28px !important;
                margin-bottom: 0;
            }
            
            .contact-us-button {
                font-size: 15px;
                padding: 12px 28px;
                margin-top: 32px;
            }
        }
        
        html[data-theme="dark"] .contact-us-title {
            color: #60a5fa;
        }
        
        html[data-theme="light"] .contact-us-title {
            color: #1e3a8a;
        }

        /* === СТИЛИ ДЛЯ ДРОПДАУНОВ КАК НА СТРАНИЦЕ СВАП === */
        .swap-currency-selector {
          position: relative;
          display: flex;
          align-items: center;
          gap: 8px;
          background: var(--bg-quaternary);
          border-radius: 12px;
          padding: 12px 16px;
          cursor: pointer;
          min-width: 120px;
          user-select: none;
        }
        .swap-currency-selector:hover {
          background: rgba(255,255,255,0.07);
        }
        html[data-theme="light"] .swap-currency-selector {
          background: rgba(0, 0, 0, 0.06);
        }
        .swap-currency-dropdown {
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: #ffffff !important;
          border: 1.5px solid #e3e7ee;
          border-radius: 12px;
          margin-top: 8px;
          max-height: 320px;
          overflow-y: auto;
          z-index: 1000;
          display: none;
          box-shadow: 0 8px 32px rgba(0,0,0,0.12);
          min-width: 220px;
          padding: 16px;
        }
        html[data-theme="dark"] .swap-currency-dropdown {
          background: #070808 !important;
          border: 1.5px solid rgba(255,255,255,0.10) !important;
          box-shadow: 0 8px 32px rgba(0,0,0,0.22);
        }
        
        /* Светлая тема для дропдауна - переопределяем для мобильной версии */
        html[data-theme="light"] .swap-currency-dropdown {
          background: #ffffff !important;
        }
        .swap-currency-item {
          padding: 12px 20px;
          cursor: pointer;
          transition: background 0.2s;
          border-radius: 8px;
          display: flex;
          align-items: center;
          gap: 12px;
          font-size: 15px;
          font-weight: 500;
          color: var(--text-primary);
          border: none;
          background: none;
        }
        .swap-currency-item:hover, .swap-currency-item.selected {
          background: rgba(37,99,235,0.08);
          color: #2563EB;
        }
        html[data-theme="dark"] .swap-currency-item:hover, html[data-theme="dark"] .swap-currency-item.selected {
          background: rgba(255,255,255,0.05);
          color: #fff;
        }
        .swap-currency-item .currency-icon {
          width: 24px;
          height: 24px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 12px;
          font-weight: 600;
          color: #fff;
        }
        
        /* Специальные стили для селектора */
        .swap-currency-selector .currency-icon {
          width: 24px;
          height: 24px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0;
          color: transparent;
          position: relative;
          overflow: hidden;
        }
        
        .swap-currency-selector .currency-icon > * {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
        }
        
        .swap-currency-selector .currency-icon > *:not(:first-child) {
          display: none;
        }
        
        .swap-currency-item .currency-icon img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          border-radius: 50%;
        }
        
        /* Автоматические цвета фона для валют */
        .currency-icon[data-currency="BTC"] {
          background: #F7931A;
        }
        
        .currency-icon[data-currency="ETH"] {
          background: #627EEA;
        }
        
        .currency-icon[data-currency="USDT"] {
          background: #26A17B;
        }
        
        .currency-icon[data-currency="TON"] {
          background: #0088CC;
        }
        
        .currency-icon[data-currency="RUB"] {
          background: #2E7D32;
        }
        
        /* Цвета для банков */
        .currency-icon[data-currency="SBER"] {
          background: transparent;
        }
        
        .currency-icon[data-currency="TBANK"] {
          background: #ffdd2d;
        }
        
        .currency-icon[data-currency="VTB"] {
          background: #1e3a8a;
        }
        
        .currency-icon[data-currency="SPB"] {
          background: transparent;
        }
        

        

        

        .dropdown-search {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 12px 16px;
          background: rgba(255,255,255,0.06);
          border: 1px solid var(--border-color);
          border-radius: 8px;
          margin-bottom: 12px;
        }
        html[data-theme="dark"] .dropdown-search {
          background: rgba(255,255,255,0.06);
        }
        .search-input {
          flex: 1;
          background: none;
          border: none;
          color: var(--text-primary);
          font-size: 14px;
          outline: none;
          padding: 0;
        }
        .search-input::placeholder {
          color: var(--text-secondary);
        }
        
        /* Скрываем скроллбар в dropdown-content */
        .dropdown-content {
          scrollbar-width: none;
          -ms-overflow-style: none;
        }
        
        .dropdown-content::-webkit-scrollbar {
          display: none;
        }
        
        /* Скрываем скроллбар в swap-currency-dropdown */
        .swap-currency-dropdown {
          scrollbar-width: none;
          -ms-overflow-style: none;
        }
        
        .swap-currency-dropdown::-webkit-scrollbar {
          display: none;
        }
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes statSlideIn {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes countUp {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Анимации для живой ленты обменов */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.2);
            }
        }

        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(30px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromTop {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Убираем hover эффекты для торговых элементов */
        .trade-item {
            pointer-events: none !important;
            cursor: default !important;
        }

        .trade-item:hover {
            transform: none !important;
            box-shadow: none !important;
        }

        /* Скрываем скроллбар полностью */
        .trades-feed::-webkit-scrollbar {
            display: none;
        }

        .trades-feed {
            -ms-overflow-style: none;  /* Internet Explorer 10+ */
            scrollbar-width: none;  /* Firefox */
        }

        /* Убираем горизонтальный скролл */
        .live-trades-widget,
        .trades-container,
        .trades-feed {
            overflow-x: hidden !important;
        }

        .trade-item {
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Адаптация дашборд карточек к темам */
        [data-theme="light"] .main-dashboard-card,
        [data-theme="light"] .status-dashboard-card,
        [data-theme="light"] .security-dashboard-card {
            background: #ffffff !important;
            border: 1px solid rgba(0, 0, 0, 0.06) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        }

        [data-theme="dark"] .main-dashboard-card,
        [data-theme="dark"] .status-dashboard-card,
        [data-theme="dark"] .security-dashboard-card {
            background: #070808 !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
        }
        
        /* Hover эффекты для статистических карточек */
        .stat-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .stats-section {
                padding: 60px 20px !important;
            }
            
            .stats-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
            
            .stat-card {
                padding: 24px 20px !important;
            }
            
            .stat-number {
                font-size: 36px !important;
            }
        }
        /* Стеклянные эффекты для карточек */
        .glass-card {
            position: relative;
            overflow: hidden;
        }
        
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(255, 255, 255, 0.02) 100%);
            pointer-events: none;
            z-index: 1;
        }
        
        .glass-card > * {
            position: relative;
            z-index: 2;
        }
        
        /* Hover эффекты */
        .glass-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
            border: 1px solid rgba(255, 255, 255, 0.25) !important;
        }
        
        /* Стеклянные мини-элементы */
        .glass-mini {
            position: relative;
            overflow: hidden;
        }
        
        .glass-mini::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.08) 0%, 
                rgba(255, 255, 255, 0.03) 100%);
            pointer-events: none;
        }
        
        .glass-mini > * {
            position: relative;
            z-index: 1;
        }
        
        /* Светлая тема - адаптация для карточек */
        [data-theme="light"] .glass-card {
            background: rgba(255, 255, 255, 0.9) !important;
            border: 1px solid rgba(0, 0, 0, 0.08) !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
        }
        
        [data-theme="light"] .glass-card:hover {
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
            border: 1px solid rgba(0, 0, 0, 0.12) !important;
        }
        
        [data-theme="light"] .glass-mini {
            background: rgba(245, 245, 245, 0.8) !important;
            border: 1px solid rgba(0, 0, 0, 0.05) !important;
        }
        
        [data-theme="light"] .glass-card::before {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.6) 0%, 
                rgba(255, 255, 255, 0.3) 50%, 
                rgba(255, 255, 255, 0.1) 100%);
        }
        
        [data-theme="light"] .glass-mini::before {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.4) 0%, 
                rgba(255, 255, 255, 0.2) 100%);
        }
        
        /* Дополнительные переменные для текста */
        :root {
            --text-tertiary: rgba(255, 255, 255, 0.5);
        }
        
        [data-theme="light"] {
            --text-tertiary: rgba(0, 0, 0, 0.4);
        }
        
        /* FAQ секция - адаптация цвета фона для светлой темы */
        [data-theme="light"] .swap-faq-section {
            background: #ffffff !important;
        }
        
        /* Простые карточки - адаптация для светлой темы */
        [data-theme="light"] .simple-card {
            background: #ffffff !important;
        }
        
        /* Анимация пульсации */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }
        
        /* Анимация бегущей строки */
        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 768px) {
            .mars-widgets-grid {
                width: 100% !important;
                padding: 0 20px !important;
                grid-template-columns: 1fr !important;
                grid-template-rows: auto !important;
            }
            
            .mars-weather-vertical,
            .mars-rover-card,
            .mars-stats-card,
            .mars-samples-list {
                grid-column: 1 / 2 !important;
                grid-row: auto !important;
                padding: 16px !important;
            }
            
            .mars-samples-list div[style*="grid-template-columns"] {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
                gap: 8px !important;
            }
        }
        
        @media (max-width: 480px) {
            .mars-widgets-grid {
                gap: 16px !important;
                padding: 0 16px !important;
            }
            
            .mars-rover-card div[style*="gap: 16px"],
            .mars-stats-card div[style*="gap: 16px"] {
                gap: 12px !important;
            }
            
            .mars-rover-card [style*="width: 50px"],
            .mars-stats-card [style*="width: 50px"] {
                width: 40px !important;
                height: 40px !important;
                font-size: 20px !important;
            }
        }
        @media (max-width: 768px) {
            .features-section {
                margin: 0 auto 0 auto;
                padding: 0 16px;
            }
            
            .feature-row {
                flex-direction: column;
                gap: 32px;
                margin-bottom: 48px;
            }

            /* На мобилке всегда сначала текст, потом изображение
               для обеих секций (моментый обмен и партнёрка) */
            .feature-content {
                order: 1;
            }

            .feature-images {
                order: 2;
            }
            
            .feature-content h2 {
                font-size: 22px;
                margin-bottom: 16px;
            }
            
            .feature-content p {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .feature-images {
                max-width: 225px;
                width: auto;
                flex: none;
                margin: 0 auto;
            }
            
            /* Удобный EHODI обмен - больше размер */
            .feature-row:not(.feature-row--reverse) .feature-images {
                max-width: 270px;
            }
            
            /* Партнерская программа - увеличиваем размер на мобилке */
            .feature-row--reverse .feature-images {
                max-width: 300px;
            }
        }
        
        .feature-btn:hover {
            transform: translateY(-2px);
            background: #1D4ED8;
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
        }
        
        /* Utility classes */
        .hidden {
            display: none;
        }
        
        .logo-text {
            font-weight: 600;
            margin-left: 0;
            text-transform: uppercase;
            text-decoration: none;
        }
        
        .dropdown-icon {
            color: var(--text-secondary);
        }
        
        .swap-icon-white {
            color: white;
        }
        
        .burger-icon {
            display: block;
        }
        
        .close-icon {
            display: none;
        }
        
        .burger-menu-btn.is-open .burger-icon {
            display: none;
        }
        
        .burger-menu-btn.is-open .close-icon {
            display: block;
        }
        
        /* Ticker trade styles */
        .ticker-trade {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 16px 24px;
            border-radius: 12px;
            min-width: 280px;
            white-space: nowrap;
        }
        
        .ticker-trade-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .ticker-trade-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
        }
        
        .ticker-trade-arrow {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        .ticker-trade-center {
            flex: 1;
        }
        
        .ticker-trade-pair {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .ticker-time {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        
        .ticker-trade-right {
            margin-left: auto;
            text-align: right;
        }
        
        .ticker-trade-primary {
            font-size: 16px;
            font-weight: 700;
        }
        
        .ticker-trade-secondary {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        
        @media (max-width: 900px) {
            .trades-ticker-section {
                padding: 16px 0;
                margin: 30px 0 100px 0;
            }
            
            .trades-ticker-heading {
                margin-bottom: 30px;
            }
            
            .trades-ticker-heading h3 {
                font-size: 20px;
            }
            
            /* Вторая строка тикера только в мобилке */
            .trades-ticker--mobile-dup {
                display: flex;
                margin-top: 40px;             /* увеличенное расстояние между лентами */
                animation-name: tickerScrollReverse;
            }

            /* Третья строка тикера только в мобилке, движется влево */
            #trades-ticker-3 {
                animation: tickerScroll 60s linear infinite;
            }
        }
        
        /* Адаптивные стили для hero-секции (о сервисе + главная) */
        @media (max-width: 900px) {
            main#about-sections .hero-section,
            .hero-section--home {
                height: auto !important;
                min-height: 40vh !important;
                padding: 40px 20px !important;
            }
            
            main#about-sections .hero-content,
            .hero-section--home .hero-content {
                max-width: 100% !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
            
            main#about-sections .hero-content > div > div:first-child,
            .hero-section--home .hero-content > div > div:first-child {
                font-size: 28px !important;
                margin-bottom: 20px !important;
            }
            
            main#about-sections .hero-content > div > div:nth-child(2),
            .hero-section--home .hero-content > div > div:nth-child(2) {
                flex-direction: column !important;
                gap: 20px !important;
                padding: 15px 0 !important;
            }
            
            main#about-sections .hero-description,
            .hero-section--home .hero-description {
                font-size: 16px !important;
                margin-bottom: 20px !important;
            }
            
            main#about-sections .hero-button,
            .hero-section--home .hero-button {
                width: 100%;
                max-width: 300px;
            }
        }
        
        /* Главный заголовок */
        @media (max-width: 900px) {
            .about-main-title-container {
                padding: 40px 20px !important;
            }
            
            .about-main-title {
                font-size: 24px !important;
                line-height: 1.3 !important;
                text-align: center !important;
            }
        }
        
        /* Секции с изображениями и текстом - десктоп */
        @media (min-width: 901px) {
            /* Заработок, Поддержка, Гибкие возможности - опускаем ниже */
            .about-content-wrapper > .about-section {
                margin-top: 100px !important;
            }
        }
        
        /* Секции с изображениями и текстом */
        @media (max-width: 900px) {
            .about-section {
                flex-direction: column !important;
                gap: 40px !important;
                margin-bottom: 80px !important;
                padding: 0 20px !important;
            }
            
            .about-section-image {
                order: 1;
            }
            
            .about-section-image svg {
                width: 120px !important;
                height: 120px !important;
                min-width: 120px !important;
                min-height: 120px !important;
            }
            
            .about-section-text {
                max-width: 100% !important;
                order: 2;
                text-align: center;
            }
            
            .about-section-title {
                font-size: 22px !important;
                margin-bottom: 16px !important;
                text-align: center !important;
            }
            
            .about-section-text > div {
                width: 100% !important;
                max-width: 100% !important;
                font-size: 14px !important;
                line-height: 1.5 !important;
                height: auto !important;
                overflow: visible !important;
                text-align: center !important;
            }
        }
        
        /* Контейнер контента */
        @media (max-width: 900px) {
            .about-content-wrapper {
                padding: 0 16px !important;
            }
            
            main#about-sections {
                padding: 0 !important;
            }
        }
        
        /* Адаптивные стили для страницы "Соглашение" */
        @media (max-width: 900px) {
            body main {
                padding: 110px 16px 40px 16px;
                display: block;
                align-items: flex-start;
                justify-content: flex-start;
                overflow: visible;
                min-height: auto;
            }
            
            main .legal-clean {
                max-width: 100%;
                width: 100%;
                padding: 0;
                margin: 0 auto;
                overflow: visible;
            }
            
            main .legal-clean .agreement-title {
                font-size: 22px;
                margin-top: 0;
                margin-bottom: 16px;
                line-height: 1.4;
                padding-top: 0;
                word-wrap: break-word;
                text-align: center;
                display: block;
                overflow: visible;
                visibility: visible;
                height: auto;
                min-height: auto;
                position: relative;
                z-index: 1;
            }
            
            main .legal-clean > div:first-of-type {
                margin-bottom: 20px;
            }
            
            main .legal-clean > div:first-of-type strong {
                font-size: 14px;
                display: block;
                margin-bottom: 8px;
            }
            
            main .legal-clean > div:first-of-type > div {
                font-size: 13px;
                line-height: 1.5;
            }
            
            main .legal-clean section {
                margin-bottom: 24px;
            }
            
            main .legal-clean h2 {
                font-size: 18px;
                margin: 20px 0 12px 0;
                line-height: 1.4;
                word-wrap: break-word;
            }
            
            main .legal-clean p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 12px;
                word-wrap: break-word;
            }
            
            main .legal-clean section[style*="padding: 20px"] {
                padding: 16px;
                border-radius: 12px;
            }
        }
        
        @media (max-width: 480px) {
            body main {
                padding: 100px 12px 32px 12px;
            }
            
            main .legal-clean .agreement-title {
                font-size: 20px;
            }
        }
        
        /* Адаптивные стили для страницы "AML Политика" */
        @media (max-width: 900px) {
            body main {
                padding: 110px 16px 40px 16px;
                display: block;
                align-items: flex-start;
                justify-content: flex-start;
                overflow: visible;
                min-height: auto;
            }
            
            main .legal-clean {
                max-width: 100%;
                width: 100%;
                padding: 0;
                margin: 0 auto;
                overflow: visible;
            }
            
            main .legal-clean .aml-title {
                font-size: 22px;
                margin-top: 0;
                margin-bottom: 16px;
                line-height: 1.4;
                padding-top: 0;
                word-wrap: break-word;
                text-align: center;
                display: block;
                overflow: visible;
                visibility: visible;
                height: auto;
                min-height: auto;
                position: relative;
                z-index: 1;
            }
            
            main .legal-clean > div:first-of-type {
                margin-bottom: 20px;
            }
            
            main .legal-clean > div:first-of-type strong {
                font-size: 14px;
                display: block;
                margin-bottom: 8px;
            }
            
            main .legal-clean section {
                margin-bottom: 24px;
            }
            
            main .legal-clean h2 {
                font-size: 18px;
                margin: 20px 0 12px 0;
                line-height: 1.4;
                word-wrap: break-word;
            }
            
            main .legal-clean p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 12px;
                word-wrap: break-word;
            }
            
            main .legal-clean ul {
                font-size: 14px;
                line-height: 1.6;
                padding-left: 20px;
            }
            
            main .legal-clean li {
                margin-bottom: 8px;
            }
            
            main .legal-clean section[style*="padding: 20px"] {
                padding: 16px;
                border-radius: 12px;
            }
        }
        
        @media (max-width: 480px) {
            body main {
                padding: 100px 12px 32px 12px;
            }
            
            main .legal-clean .aml-title {
                font-size: 20px;
            }
        }
        

