        :root {
            --primary: #00D9FF;
            --primary-dark: #00A8CC;
            --secondary: #FF006B;
            --accent: #7B2FFF;
            --dark: #0A0E27;
            --dark-light: #1A1F3A;
            --text: #FFFFFF;
            --text-muted: #A8B2D1;
            --success: #00FFA3;
            --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #7B2FFF 100%);
            --gradient-secondary: linear-gradient(135deg, #FF006B 0%, #FFA500 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid rgba(0, 217, 255, 0.2);
            transition: all 0.3s ease;
        }
        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 30px rgba(0, 217, 255, 0.3);
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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: -1px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding-left: 0;
        }
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        .nav-menu a:hover {
            color: var(--primary);
        }
        .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: 30px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }
        .cta-button {
            padding: 14px 35px;
            background: var(--gradient-secondary);
            color: var(--text);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(255, 0, 107, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            text-align: center;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 107, 0.6);
            color: var(--text);
        }

        main {
            margin-top: 80px;
        }

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

        h1 {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 40px;
            color: var(--text);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

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

        h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text);
        }

        p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 0, 107, 0.15) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation: pulse 5s ease-in-out infinite;
        }

        footer {
            background: var(--dark-light);
            padding: 60px 0 30px;
            border-top: 2px solid rgba(0, 217, 255, 0.2);
        }

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

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

        .footer-section ul li {
            margin-bottom: 10px;
        }

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

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

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

        .stats-grid, .feature-icons {
            background: var(--dark-light);
        }

        @media (max-width: 768px) {
            section.container {
                margin-top: 200px !important;
            }

            .hamburger {
                display: flex;
            }

            header .container {
                flex-wrap: wrap;
            }

            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.3s ease;
            }

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

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 15px 0;
            }

            header .cta-button {
                width: 100%;
                margin-top: 15px;
            }

            h1 {
                font-size: 42px;
            }

            h2 {
                font-size: 36px;
            }

            h3 {
                font-size: 26px;
            }

            section {
                padding: 60px 0;
            }

            .hero-section {
                min-height: 70vh;
            }

            .timeline-item, .step-item, .feature-block, .info-card, .highlight-box, article {
                padding: 25px;
            }

            .feature-table, .payment-table {
                font-size: 14px;
            }

            .feature-table th, .payment-table th,
            .feature-table td, .payment-table td {
                padding: 12px 8px;
            }

            .cta-section h2 {
                font-size: 38px;
            }

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

        @media (min-width: 769px) and (max-width: 1024px) {
            h1 {
                font-size: 52px;
            }

            h2 {
                font-size: 42px;
            }

            .container {
                padding: 0 30px;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tabs-content .tab-item {
            margin-bottom: 40px;
        }

        .game-icon {
            float: right;
            max-width: 200px;
            margin: 0 0 20px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
        }

        img.horizontal, img.vertical, img.wide {
            margin: 10px auto;
            display: block;
            max-width: 500px;
        }

        @media (max-width: 768px) {
            .game-icon {
                float: none;
                display: block;
                margin: 0 auto 20px;
                max-width: 100%;
            }
        }
    

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

            header .container {
                flex-wrap: wrap;
            }

            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.3s ease;
            }

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

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 15px 0;
            }

            header .cta-button {
                width: 100%;
                margin-top: 15px;
            }

            h1 {
                font-size: 42px;
            }

            h2 {
                font-size: 36px;
            }

            h3 {
                font-size: 26px;
            }

            section {
                padding: 60px 0;
            }

            .hero-section {
                min-height: 70vh;
            }

            .timeline-item, .step-item, .feature-block, .info-card, .highlight-box, article {
                padding: 25px;
            }

            .feature-table, .payment-table {
                font-size: 14px;
            }

            .feature-table th, .payment-table th,
            .feature-table td, .payment-table td {
                padding: 12px 8px;
            }

            .cta-section h2 {
                font-size: 38px;
            }

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