        :root {
            --primary-color: #00D9FF;
            --secondary-color: #FF006B;
            --accent-color: #FFD600;
            --dark-bg: #0A0E27;
            --darker-bg: #050816;
            --card-bg: #151B3D;
            --text-light: #FFFFFF;
            --text-muted: #A0AEC0;
            --gradient-1: linear-gradient(135deg, #00D9FF 0%, #0099FF 100%);
            --gradient-2: linear-gradient(135deg, #FF006B 0%, #FF4081 100%);
            --gradient-3: linear-gradient(135deg, #FFD600 0%, #FFA726 100%);
            --glow-cyan: 0 0 30px rgba(0, 217, 255, 0.5);
            --glow-pink: 0 0 30px rgba(255, 0, 107, 0.5);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--darker-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            text-shadow: var(--glow-cyan);
        }

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

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

        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .nav-menu a:hover {
            color: var(--primary-color);
            text-shadow: var(--glow-cyan);
        }

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

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

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

        .cta-button {
            padding: 16px 40px;
            background: var(--gradient-2);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: var(--glow-pink);
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 0, 107, 0.6);
            color: var(--text-light);
        }

        .hero-section {
            padding: 120px 0 100px;
            background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
            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 8s 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 8s ease-in-out infinite 2s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .site-header {
            background: var(--dark-bg);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-color);
            box-shadow: 0 5px 30px rgba(0, 217, 255, 0.2);
        }

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

        h2 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 50px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-light);
        }

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

        .hero-section h1 {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .hero-section p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 900px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .text-block p {
            color: var(--text-light);
        }

        .table-responsive {
            margin: 50px 0;
            overflow-x: auto;
        }

        .feature-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0, 217, 255, 0.2);
        }

        .feature-table thead {
            background: var(--gradient-1);
        }

        .feature-table th {
            padding: 25px 30px;
            text-align: left;
            font-weight: 700;
            font-size: 18px;
            color: var(--text-light);
        }

        .feature-table td {
            padding: 25px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 16px;
            color: var(--text-light);
        }

        .feature-table tbody tr:last-child td {
            border-bottom: none;
        }

        .feature-table tbody tr {
            transition: all 0.3s ease;
        }

        .feature-table tbody tr:hover {
            background: rgba(0, 217, 255, 0.05);
        }

        .timeline-container {
            position: relative;
            padding-left: 50px;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-1);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            padding: 40px;
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -63px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            box-shadow: var(--glow-cyan);
        }

        .timeline-item:hover {
            transform: translateX(10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
        }

        .timeline-item h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .timeline-item p {
            color: var(--text-light);
        }

        .cards-grid-3 .container > p {
            max-width: 900px;
            margin-bottom: 60px;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 0;
            margin-bottom: 40px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-color);
            box-shadow: 0 20px 60px rgba(255, 0, 107, 0.4);
        }

        .game-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 30px 30px 20px;
            color: var(--secondary-color);
        }

        .game-card p {
            padding: 0 30px 30px;
            color: var(--text-light);
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .highlight-box {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 40px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .highlight-box:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 60px rgba(255, 214, 0, 0.4);
        }

        .highlight-box h3 {
            color: var(--accent-color);
            margin-bottom: 25px;
        }

        .highlight-box img {
            width: 100%;
            max-width: 450px;
            height: auto;
            border-radius: 15px;
            margin: 20px auto;
            display: block;
        }

        .highlight-box p {
            color: var(--text-light);
        }

        .accordion-container {
            max-width: 1000px;
            margin: 50px auto 0;
        }

        .accordion-item {
            background: var(--card-bg);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary-color);
        }

        .accordion-header {
            width: 100%;
            padding: 30px 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header::after {
            content: '+';
            font-size: 32px;
            font-weight: 300;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .accordion-header[aria-expanded="true"]::after {
            transform: rotate(45deg);
        }

        .accordion-header h3 {
            margin: 0;
            text-align: left;
            font-size: 24px;
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .accordion-body p {
            padding: 0 40px 30px;
            color: var(--text-light);
        }

        .feature-item {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 45px;
            margin-bottom: 40px;
            border-left: 5px solid var(--primary-color);
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
        }

        .feature-item h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature-item p {
            color: var(--text-light);
        }

        .cards-grid-2 {
            background: var(--dark-bg);
        }

        .cards-grid-2 .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .cards-grid-2 h2 {
            grid-column: 1 / -1;
        }

        .cards-grid-2 p:first-of-type {
            grid-column: 1 / -1;
            max-width: 900px;
        }

        .info-card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 45px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .info-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-color);
            box-shadow: 0 20px 60px rgba(255, 0, 107, 0.4);
        }

        .info-card h3 {
            color: var(--secondary-color);
            margin-bottom: 25px;
        }

        .info-card p {
            color: var(--text-light);
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -150px;
            left: -150px;
            animation: pulse 6s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            bottom: -150px;
            right: -150px;
            animation: pulse 6s ease-in-out infinite 1s;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 56px;
            color: var(--text-light);
            background: none;
            -webkit-text-fill-color: var(--text-light);
            margin-bottom: 25px;
        }

        .cta-section p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-section .cta-button {
            background: var(--text-light);
            color: var(--secondary-color);
            font-size: 18px;
            padding: 20px 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .cta-section .cta-button:hover {
            background: var(--accent-color);
            color: var(--darker-bg);
        }

        .site-footer {
            background: var(--darker-bg);
            padding: 60px 0 40px;
            border-top: 2px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
        }

        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

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

        .footer-info p {
            color: var(--text-muted);
            font-size: 14px;
            margin: 0;
        }

        @media (max-width: 991px) {
            .hero-section h1 {
                font-size: 48px;
            }

            h2 {
                font-size: 40px;
            }

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

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

            .logo {
                order: 1;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .main-nav {
                order: 3;
                width: 100%;
                flex: none;
            }

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

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

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

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

            .header-content > .cta-button {
                order: 4;
                width: 100%;
                margin-top: 20px;
                text-align: center;
            }

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

            .hero-section h1 {
                font-size: 36px;
            }

            .hero-section p {
                font-size: 18px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 24px;
            }

            section {
                padding: 60px 0;
            }

            .timeline-container {
                padding-left: 30px;
            }

            .timeline-item {
                padding: 30px 25px;
            }

            .timeline-item::before {
                left: -43px;
            }

            .feature-table th,
            .feature-table td {
                padding: 20px 15px;
                font-size: 14px;
            }

            .accordion-header {
                padding: 25px 20px;
            }

            .accordion-header h3 {
                font-size: 20px;
            }

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

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

            .cta-section p {
                font-size: 18px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

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

        .logo img {
            max-height: 50px;
        }

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

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

        @media (max-width: 767px) {
            .nav-menu a {
                text-align: center;
            }
        }

        @media (max-width: 767px) {
            .nav-menu {
                width: 100%;
                padding-left: 0;
            }
        }

        @media (min-width: 768px) {
            .game-card {
                display: grid;
                grid-template-columns: 300px 1fr;
                gap: 0;
            }

            .game-card img {
                height: 100%;
                min-height: 300px;
            }

            .game-card h3,
            .game-card p {
                padding-left: 40px;
                padding-right: 40px;
            }

            .game-card h3 {
                padding-top: 40px;
            }

            .game-card p:last-child {
                padding-bottom: 40px;
            }

            .cards-grid-2 .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .logo {
                order: 1;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .main-nav {
                order: 3;
                width: 100%;
                flex: none;
            }

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

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

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

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

            .header-content > .cta-button {
                order: 4;
                width: 100%;
                margin-top: 20px;
                text-align: center;
            }

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

            .hero-section h1 {
                font-size: 36px;
            }

            .hero-section p {
                font-size: 18px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 24px;
            }

            section {
                padding: 60px 0;
            }

            .timeline-container {
                padding-left: 30px;
            }

            .timeline-item {
                padding: 30px 25px;
            }

            .timeline-item::before {
                left: -43px;
            }

            .feature-table th,
            .feature-table td {
                padding: 20px 15px;
                font-size: 14px;
            }

            .accordion-header {
                padding: 25px 20px;
            }

            .accordion-header h3 {
                font-size: 20px;
            }

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

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

            .cta-section p {
                font-size: 18px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

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