/* === BASE STYLES === */:root {
            --primary: #00D9FF;
            --primary-dark: #00A8CC;
            --secondary: #FF006B;
            --secondary-dark: #CC0056;
            --accent: #FFD700;
            --dark: #0A0E27;
            --dark-alt: #151B3D;
            --text: #E8F0F2;
            --text-muted: #8B9BB4;
            --success: #00FF94;
            --gradient-1: linear-gradient(135deg, #00D9FF 0%, #7B2FFF 100%);
            --gradient-2: linear-gradient(135deg, #FF006B 0%, #FF8F00 100%);
            --gradient-3: linear-gradient(135deg, #FFD700 0%, #FF006B 100%);
            --shadow-sm: 0 2px 8px rgba(0, 217, 255, 0.1);
            --shadow-md: 0 8px 24px rgba(0, 217, 255, 0.15);
            --shadow-lg: 0 16px 48px rgba(0, 217, 255, 0.2);
            --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.4);
        }

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

        html {
            overflow-x: hidden;
            width: 100%;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
            position: relative;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

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

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--primary);
            text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--text);
        }

        h4 {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            font-weight: 600;
            color: var(--primary);
        }

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

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

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

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            overflow-x: visible;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .btn {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 18px 40px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

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

        .btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-primary {
            background: var(--gradient-2);
            color: #fff;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        .card {
            background: var(--dark-alt);
            border: 1px solid rgba(0, 217, 255, 0.15);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .card:hover::before {
            opacity: 0.05;
        }

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

        .card > * {
            position: relative;
            z-index: 1;
        }

        .badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--gradient-1);
            color: #fff;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

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

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            max-width: 120px;
            height: auto;
            box-shadow: none;
            filter: none;
        }

        .logo-text {
            font-family: 'Sora', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

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

        .nav-menu a {
            font-weight: 500;
            font-size: 1rem;
            color: var(--text);
            position: relative;
            padding: 5px 0;
        }

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            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(7px, -7px);
        }

        .cta-button-mobile {
            display: none;
        }

        footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            padding: 60px 0 30px;
            margin-top: 100px;
        }

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            list-style: none;
            justify-content: center;
            margin-bottom: 30px;
            padding: 0;
        }

        .footer-nav a {
            color: var(--text-muted);
            font-size: 1rem;
        }

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

        .footer-info {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .footer-info p {
            margin-bottom: 0.5rem;
            color: var(--text-muted);
        }

        @media (max-width: 991px) {
            nav {
                order: 3;
                width: 100%;
                margin-top: 20px;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .nav-menu.active {
                max-height: 500px;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                border-top: 1px solid rgba(0, 217, 255, 0.1);
            }

            .hamburger {
                display: flex;
            }

            header .cta-button {
                display: none;
            }

            .cta-button-mobile {
                display: none;
                width: 100%;
                text-align: center;
                margin-top: 15px;
                padding: 15px 20px;
                border-top: 1px solid rgba(0, 217, 255, 0.1);
                font-size: 0.9rem;
            }

            nav:has(.nav-menu.active) .cta-button-mobile {
                display: block;
            }
        }

        @media (max-width: 767px) {
            html, body {
                overflow-x: hidden;
                width: 100%;
                position: relative;
            }

            header .container {
                padding: 0 15px;
            }

            .container {
                padding: 0 15px;
                max-width: 100%;
            }

            .logo img {
                max-width: 90px;
            }

            .logo-text {
                font-size: 1.4rem;
            }

            header .cta-button,
            header .cta-button-mobile {
                font-size: 0.85rem;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 15px;
            }

            img {
                max-width: 100%;
                height: auto;
            }

            table, .table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                width: 100%;
            }

            table, .table {
                min-width: 100%;
            }
        }

@media (max-width: 991px) {
            nav {
                order: 3;
                width: 100%;
                margin-top: 20px;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }

            .nav-menu.active {
                max-height: 400px;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                border-top: 1px solid rgba(0, 217, 255, 0.1);
            }

            .hamburger {
                display: flex;
            }

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

@media (max-width: 767px) {
            header .container {
                padding: 0 15px;
            }

            .logo-text {
                font-size: 1.4rem;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 15px;
            }
        }

@media (max-width: 767px) {
            section {
                padding: 50px 0;
            }

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

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.4rem;
            }

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

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

            .card {
                padding: 30px 20px;
            }

            .comparison-table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .comparison-table table {
                min-width: 600px;
            }

            .timeline-item,
            .checklist li,
            .numbered-list li {
                padding-left: 40px;
            }

            .steps-list,
            .text-block,
            .feature-block,
            .highlight-box {
                padding: 25px 20px;
            }

            .accordion-header {
                padding: 20px;
            }

            .accordion-header h3 {
                font-size: 1.1rem;
            }

            .accordion-body {
                padding: 0 20px;
            }

            .accordion-item.active .accordion-body {
                padding: 0 20px 20px;
            }

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

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

            .highlight-list {
                grid-template-columns: 1fr;
            }
        }