/* === BASE STYLES === */:root {
            --primary: #FF2E63;
            --secondary: #08D9D6;
            --accent: #FFD23F;
            --dark: #0A0E27;
            --light: #F8F9FA;
            --text: #E8E8E8;
            --gradient-1: linear-gradient(135deg, #FF2E63 0%, #FE6B8B 100%);
            --gradient-2: linear-gradient(135deg, #08D9D6 0%, #00C9FF 100%);
            --gradient-3: linear-gradient(135deg, #FFD23F 0%, #FFA940 100%);
            --shadow-sm: 0 2px 8px rgba(255, 46, 99, 0.15);
            --shadow-md: 0 8px 24px rgba(255, 46, 99, 0.2);
            --shadow-lg: 0 16px 48px rgba(255, 46, 99, 0.3);
            --border-radius: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }

        .container {
            max-width: 1320px;
            padding: 0 20px;
            margin: 0 auto;
        }

        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--secondary);
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--accent);
        }

        h4 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            color: var(--light);
        }

        p {
            margin-bottom: 1.25rem;
            font-size: 1.1rem;
            color: var(--text);
        }

        a {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--accent);
        }

        .btn {
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
            min-width: 44px;
            min-height: 44px;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button {
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow-md);
            min-width: 44px;
            min-height: 44px;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(8, 217, 214, 0.2);
            border-radius: var(--border-radius);
            padding: 2rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .content-image {
            max-width: 100%;
            margin: 2rem auto;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        table th {
            background: var(--gradient-1);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 700;
        }

        table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(8, 217, 214, 0.1);
            color: var(--text);
        }

        table tr:hover {
            background: rgba(8, 217, 214, 0.1);
        }

        /* === LAYOUT STYLES === */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(8, 217, 214, 0.2);
            padding: 1rem 0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .site-header .container {
            gap: 0.1rem;
        }

        .logo a {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        .logo a:hover {
            filter: drop-shadow(0 0 10px rgba(8, 217, 214, 0.5));
        }

        .main-nav {
            padding-left: 0;
            margin-bottom: 0;
            flex: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-2);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            min-width: 44px;
            min-height: 44px;
            z-index: 1001;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .site-footer {
            background: rgba(10, 14, 39, 0.98);
            border-top: 1px solid rgba(8, 217, 214, 0.2);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: var(--text);
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-section p {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        @media (max-width: 767px) {
            .header-content {
                flex-wrap: wrap;
            }

            .hamburger {
                display: flex;
            }

            .logo {
            }

            .main-nav {
                width: 100%;
            }

            .main-nav .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                padding: 1rem 0;
                gap: 0;
            }

            .main-nav .nav-menu.active {
                display: flex;
            }

            .main-nav .nav-menu li {
                border-bottom: 1px solid rgba(8, 217, 214, 0.1);
            }

            .main-nav .nav-menu a {
                display: block;
                padding: 1rem;
            }

            .header-content > .cta-button {
                max-width: 200px;
                padding: 12px 24px;
                font-size: 0.95rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

@media (max-width: 767px) {
            .hero-section {
                padding: 4rem 0 3rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .btn, .cta-button {
                padding: 14px 28px;
                font-size: 1rem;
            }

            .page-navigation {
                grid-template-columns: 1fr;
            }

            .timeline-container {
                padding-left: 2rem;
            }

            .timeline-marker {
                left: -2.5rem;
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

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

            .stats-container {
                grid-template-columns: 1fr;
            }

            .stat-value {
                font-size: 2.5rem;
            }

            .loyalty-levels {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .payment-blocks {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .cta-content p {
                font-size: 1.1rem;
            }

            .highlight-box {
                padding: 2rem 1.5rem;
            }

            section {
                padding: 3rem 0;
            }
        }