        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFD23F;
            --dark-bg: #0A0E27;
            --light-bg: #1A1F3A;
            --text-primary: #FFFFFF;
            --text-secondary: #B8C5D6;
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            --gradient-secondary: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
            --gradient-accent: linear-gradient(135deg, #FFD23F 0%, #FFA94D 100%);
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.4);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: rgba(26, 31, 58, 0.95);
            backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 107, 53, 0.2);
            box-shadow: var(--shadow-md);
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            gap: 20px;
        }
        .logo-img {
            max-height: 50px;
            width: auto;
            display: block;
        }
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger-line {
            width: 28px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
            padding-left: 0;
            margin-bottom: 0;
        }
        .nav-list li {
            flex: none;
        }
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .cta-button {
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        .btn-primary {
            background: var(--gradient-primary);
            color: var(--text-primary);
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
            color: var(--text-primary);
        }

        .btn-large {
            padding: 18px 48px;
            font-size: 18px;
        }

        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .page-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        section {
            padding: 80px 0;
        }

        h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 40px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--accent-color);
        }

        h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        p {
            color: var(--text-secondary);
            font-size: 17px;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .content-block {
            margin-bottom: 32px;
        }

        .subsection {
            margin-bottom: 60px;
        }

        .subsection-inner {
            margin-top: 40px;
            margin-left: 20px;
        }

        .card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 107, 53, 0.5);
        }

        .info-table-wrapper, .payment-table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
        }

        .info-table, .payment-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
        }

        .info-table thead, .payment-table thead {
            background: var(--gradient-primary);
        }

        .info-table th, .payment-table th {
            padding: 20px;
            text-align: left;
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }

        .info-table td, .payment-table td {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 16px;
        }

        .info-table tbody tr:hover, .payment-table tbody tr:hover {
            background: rgba(255, 107, 53, 0.1);
        }

        .list-styled {
            list-style: none;
            padding-left: 0;
            margin: 24px 0;
        }

        .list-styled li {
            padding-left: 32px;
            margin-bottom: 16px;
            position: relative;
            color: var(--text-secondary);
            font-size: 17px;
        }

        .list-styled li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 20px;
        }

        .app-cards, .game-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin: 40px 0;
        }

        .app-card, .game-card {
            display: flex;
            flex-direction: column;
        }

        .app-image, .game-icon {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-md);
        }

        .game-icon {
            height: 200px;
            object-fit: cover;
        }

        .card-content {
            flex: 1;
        }

        .features-block, .bonus-conditions, .code-sources {
            margin-top: 24px;
        }

        .features-intro, .conditions-intro, .games-intro {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .cta-block {
            text-align: center;
            margin: 60px 0;
        }

        .faq-list {
            margin-top: 40px;
        }

        .faq-item {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .faq-item:hover {
            border-color: rgba(255, 107, 53, 0.5);
            transform: translateX(8px);
        }

        .faq-question {
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 16px;
        }

        .faq-answer p {
            margin-bottom: 0;
        }

        .final-cta-section {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(0, 78, 137, 0.2) 100%);
            padding: 100px 0;
        }

        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .cta-text {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text-secondary);
        }

        .footer {
            background: var(--light-bg);
            padding: 60px 0 40px;
            border-top: 1px solid rgba(255, 107, 53, 0.2);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        .footer-nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary-color);
        }

        .footer-info {
            text-align: center;
        }

        .footer-text, .footer-disclaimer {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 8px;
        }

        @media (max-width: 1024px) {
            .page-title {
                font-size: 48px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: rgba(26, 31, 58, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 40px 40px;
                transition: left 0.3s ease;
                box-shadow: var(--shadow-lg);
            }
            .nav.active {
                left: 0;
            }
            .nav-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
            .header-content > .cta-button {
                display: none;
            }
            .nav-list::after {
                content: '';
                display: block;
                width: 100%;
                padding-top: 24px;
            }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .page-title {
                font-size: 28px;
            }

            h2 {
                font-size: 28px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 15px;
            }

            .btn-large {
                padding: 16px 32px;
                font-size: 16px;
            }
        }


@media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: rgba(26, 31, 58, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 40px 40px;
                transition: left 0.3s ease;
                box-shadow: var(--shadow-lg);
            }

            .nav.active {
                left: 0;
            }

            .nav-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }

            .header-content > .cta-button {
                display: none;
            }

            .nav-list::after {
                content: '';
                display: block;
                width: 100%;
                padding-top: 24px;
            }

            .page-title {
                font-size: 36px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 24px;
            }

            h4 {
                font-size: 20px;
            }

            section {
                padding: 60px 0;
            }

            .hero-section {
                padding: 60px 0;
            }

            .app-cards, .game-cards {
                grid-template-columns: 1fr;
            }

            .info-table thead {
                display: none;
            }

            .info-table, .payment-table {
                border: 0;
            }

            .info-table tbody, .payment-table tbody {
                display: block;
            }

            .info-table tr, .payment-table tr {
                display: block;
                margin-bottom: 24px;
                background: rgba(26, 31, 58, 0.8);
                border-radius: 12px;
                padding: 16px;
                border: 1px solid rgba(255, 107, 53, 0.2);
            }

            .info-table td, .payment-table td {
                display: block;
                text-align: right;
                padding: 12px;
                border: none;
                position: relative;
                padding-left: 50%;
            }

            .info-table td::before, .payment-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 12px;
                font-weight: 700;
                color: var(--primary-color);
            }

            .final-cta-section {
                padding: 60px 0;
            }

            .cta-title {
                font-size: 32px;
            }

            .cta-text {
                font-size: 18px;
            }
        }
        img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
            margin: 10px auto;
            display: block;
            max-width: 500px;
        }

@media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .page-title {
                font-size: 28px;
            }

            h2 {
                font-size: 28px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 15px;
            }

            .btn-large {
                padding: 16px 32px;
                font-size: 16px;
            }
        }