        :root {
            /* VexaX Core Palette - Deep Void & Neon */
            --bg-void: #020203;
            --bg-panel: #0d0d14;
            --primary-neon: #8000ff;   /* Ultra Violet */
            --accent-cyan: #00f3ff;    /* Cyber Blue */
            --accent-red: #ff003c;     /* Danger Red */
            --accent-gold: #ffd700;    /* Victory Gold */
            --accent-green: #00ff9d;   /* Matrix Green */
            --text-main: #ffffff;
            --text-grey: #b0b3b8;
            --glass-border: rgba(255, 255, 255, 0.08);
            --nav-height: 90px;
        }
        

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--bg-void);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3, h4, h5 { font-family: 'Orbitron', sans-serif; letter-spacing: 2px; text-transform: uppercase; }
        .text-cyan { color: var(--accent-cyan) !important; }
        .text-neon { color: var(--primary-neon) !important; }
        .text-red { color: var(--accent-red) !important; }
        .text-gold { color: var(--accent-gold) !important; }
        .text-green { color: var(--accent-green) !important; }

        /* --- BUTTONS & UI --- */
        .btn-cyber {
            background: var(--primary-neon);
            color: white;
            border: none;
            padding: 12px 35px;
            font-family: 'Orbitron';
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
            transition: 0.3s;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            overflow: hidden;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
        }
        .btn-cyber:hover { transform: scale(1.05); box-shadow: 0 0 35px var(--primary-neon); color: white; }
        
        .btn-outline-cyber {
            background: transparent;
            border: 1px solid var(--accent-cyan);
            color: var(--accent-cyan);
            padding: 12px 35px;
            font-family: 'Orbitron';
            clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
            transition: 0.3s;
            text-transform: uppercase;
            font-weight: 700;
        }
        .btn-outline-cyber:hover { background: rgba(0, 243, 255, 0.1); box-shadow: 0 0 25px var(--accent-cyan); color: white; text-shadow: 0 0 5px white; }

        .section-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 2; }
        .section-header h2 { font-size: 3.5rem; text-shadow: 0 0 20px rgba(0,0,0,0.8); margin-bottom: 15px; }
        .section-header p { color: var(--text-grey); font-size: 1.2rem; max-width: 600px; margin: 0 auto; letter-spacing: 1px; }

        /* --- HEADER --- */
        header {
            background: rgba(2, 2, 3, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            /* position: fixed; top: 0;  */
            width: 100%; height: var(--nav-height);
            z-index: 2000; display: flex; align-items: center;
        }
        
        .nav-container {
            display: flex; justify-content: space-between; align-items: center;
            width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 40px;
        }

        /* LOGO */
        .brand-logo {
            display: flex; align-items: center; gap: 12px;
            font-size: 2.2rem; color: white; cursor: pointer;
            font-family: 'Orbitron'; font-weight: 900;
            text-transform: uppercase; letter-spacing: 2px;
        }
        .brand-logo i { color: var(--primary-neon); font-size: 2.5rem; filter: drop-shadow(0 0 5px var(--primary-neon)); }

        .main-nav { display: flex; gap: 40px; list-style: none; margin: 0; }
        .nav-link { 
            color: var(--text-grey); font-weight: 700; text-transform: uppercase; 
            text-decoration: none; transition: 0.3s; padding: 30px 0; position: relative; font-size: 1rem;
        }
        .nav-link:hover { color: var(--accent-cyan); text-shadow: 0 0 10px var(--accent-cyan); }
        .nav-link::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
            background: var(--accent-cyan); transition: 0.3s; box-shadow: 0 -2px 10px var(--accent-cyan);
        }
        .nav-link:hover::after { width: 100%; }

        /* --- USER PROFILE DROPDOWN (Fixed Hover) --- */
        .user-profile-container { position: relative; margin-left: 20px; padding: 10px 0; } /* Padding increases hover area */
        .user-avatar-btn {
            width: 45px; height: 45px; background: #222; border-radius: 50%;
            border: 2px solid var(--primary-neon); cursor: pointer;
            display: flex; align-items: center; justify-content: center; color: white;
            transition: 0.3s;
        }
        .user-avatar-btn:hover { box-shadow: 0 0 15px var(--primary-neon); }
        .profile-dropdown {
            position: absolute; top: 100%; right: 0; width: 250px;
            background: #0d0d14; border: 1px solid #333; border-radius: 10px;
            padding: 20px; display: none; box-shadow: 0 10px 40px rgba(0,0,0,0.8);
            margin-top: 5px; /* Slight gap logic fixed by ::before */
        }
        /* Invisible bridge to prevent menu disappearing */
        .user-profile-container::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 20px; background: transparent; transform: translateY(100%);
        }
        .user-profile-container:hover .profile-dropdown { display: block; }
        .profile-link { display: block; color: #888; text-decoration: none; padding: 8px 0; transition: 0.2s; }
        .profile-link:hover { color: white; padding-left: 5px; }

        /* --- MEGA MENU --- */
        /* .mega-menu {
            position: fixed; top: var(--nav-height); left: 0; width: 100vw;
            background: rgba(5, 5, 8, 0.98); border-bottom: 2px solid var(--primary-neon);
            padding: 60px 0; transform: translateY(-150%); transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 1900; opacity: 0; visibility: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.9);
            border-top: 1px solid rgba(255,255,255,0.1);
        } */
        /* .nav-item:hover .mega-menu { transform: translateY(0); opacity: 1; visibility: visible; } */
        
        .mega-col h5 { color: var(--accent-cyan); margin-bottom: 25px; border-bottom: 1px solid #333; padding-bottom: 15px; font-size: 1.4rem; letter-spacing: 2px; }
        .mega-link { display: block; color: #888; text-decoration: none; padding: 10px 0; transition: 0.2s; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.02); }
        .mega-link:hover { color: white; transform: translateX(10px); color: var(--accent-cyan); }
        .mega-link i { margin-right: 15px; color: var(--primary-neon); }

        /* --- RIGHT MENU (PRODUCTS) --- */
        .right-menu {
            position: fixed; top: 0; right: -500px; width: 400px; height: 100vh;
            background: #050505; border-left: 2px solid var(--accent-red);
            z-index: 2100; padding: 50px; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            overflow-y: auto; box-shadow: -20px 0 100px rgba(0,0,0,0.8);
        }
        .right-menu.active { right: 0; }
        
        .product-link {
            display: flex; align-items: center; gap: 15px; padding: 15px;
            border-bottom: 1px solid #222; text-decoration: none; color: #aaa;
            transition: 0.3s; font-size: 1.1rem;
        }
        .product-link:hover { background: rgba(255,255,255,0.05); color: white; padding-left: 25px; border-left: 4px solid var(--accent-red); }
        .product-link i { font-size: 1.2rem; color: var(--accent-cyan); }

        /* --- CANVAS ENGINE CORE --- */
        section { position: relative; padding: 120px 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.02); }
        .bg-canvas {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1; opacity: 0.6; pointer-events: none;
        }
        .content-layer { position: relative; z-index: 2; }

        /* --- SECTION 1: HERO (Fixed Padding) --- */
        .hero { 
            min-height: 100vh; 
            display: flex; align-items: center; justify-content: center; text-align: center; 
            /* Fixed: Added top padding to clear the header */
            padding-top: 150px; 
        }
        .hero h1 { font-size: 6rem; line-height: 0.9; margin-bottom: 30px; text-shadow: 0 0 40px rgba(0, 243, 255, 0.3); font-weight: 900; }
        .hero-subtitle { font-size: 1.5rem; color: var(--text-grey); max-width: 900px; margin: 0 auto 50px; }
        .hero-stats {
            display: flex; gap: 50px; justify-content: center; margin-top: 60px;
            padding: 30px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
        }
        
        /* --- SECTION 2: PRESENTATION --- */
        .showcase-video {
            height: 600px; background: #000; border-radius: 20px; border: 1px solid var(--accent-red);
            display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
            box-shadow: 0 0 50px rgba(255, 0, 60, 0.2);
        }
        .play-overlay { 
            width: 100px; height: 100px; background: rgba(255,255,255,0.1); border-radius: 50%; 
            display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px);
            cursor: pointer; transition: 0.3s; border: 1px solid white;
        }
        .play-overlay:hover { transform: scale(1.1); background: var(--accent-red); border-color: var(--accent-red); }

        /* --- SECTION 3: ACTION ZONE (Slider Fixed) --- */
        .slider-wrapper { position: relative; padding: 0 50px; }
        .slider-container {
            display: flex; gap: 30px; overflow-x: auto; padding: 40px 0; 
            scroll-snap-type: x mandatory; scroll-behavior: smooth;
            /* Fixed: Hide Scrollbar */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .slider-container::-webkit-scrollbar { display: none; }
        
        .nav-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 50px; height: 50px; background: rgba(0,0,0,0.8); border: 1px solid var(--accent-cyan);
            border-radius: 50%; color: var(--accent-cyan); font-size: 1.5rem; cursor: pointer; z-index: 10;
            display: flex; align-items: center; justify-content: center; transition: 0.3s;
        }
        .nav-btn:hover { background: var(--accent-cyan); color: #000; }
        .nav-btn.prev { left: 0; }
        .nav-btn.next { right: 0; }

        .action-slide {
            min-width: 400px; height: 550px; background: #151515; border-radius: 15px;
            position: relative; overflow: hidden; border: 1px solid #333; transition: 0.4s;
            scroll-snap-align: center;
        }
        .action-slide:hover { transform: scale(1.05); border-color: var(--accent-red); z-index: 10; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
        .slide-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: 0.4s; filter: grayscale(100%); }
        .action-slide:hover .slide-img { opacity: 0.8; transform: scale(1.1); filter: grayscale(0%); }
        .slide-overlay { 
            position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
            background: linear-gradient(to top, #000 10%, transparent);
        }

        /* --- SECTION 4: STRATEGY --- */
        .strat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .strat-box {
            background: rgba(0, 243, 255, 0.03); border: 1px solid rgba(0, 243, 255, 0.2);
            padding: 50px 30px; text-align: center; transition: 0.3s; position: relative; overflow: hidden;
        }
        .strat-box:hover { background: rgba(0, 243, 255, 0.1); transform: translateY(-10px); box-shadow: 0 0 30px rgba(0, 243, 255, 0.2); }
        .strat-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent-cyan); transform: scaleX(0); transition: 0.3s; }
        .strat-box:hover::before { transform: scaleX(1); }

        /* --- SECTION 5: REVIEWS (Text Color Fixed) --- */
        .review-card {
            background: #0e0e0e; padding: 40px; border-radius: 0 30px 0 30px;
            border-left: 5px solid var(--primary-neon); margin-bottom: 30px; transition: 0.3s;
        }
        .review-card:hover { background: #141414; transform: translateX(10px); }
        .r-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
        .r-avatar { width: 60px; height: 60px; background: #333; border-radius: 50%; border: 2px solid var(--primary-neon); }
        /* Fixed: High contrast text */
        .review-text { color: #e0e0e0 !important; font-size: 1.1rem; font-style: italic; }

        /* --- SECTION 6: TOURNAMENTS --- */
        .bracket-box {
            background: rgba(0,0,0,0.6); border: 1px solid #444; padding: 40px;
            text-align: center; position: relative; transition: 0.3s;
        }
        .bracket-box:hover { border-color: white; }
        .bracket-box::after { content: 'LIVE'; position: absolute; top: 15px; right: 15px; background: red; font-size: 0.8rem; padding: 4px 8px; border-radius: 3px; animation: blink 1s infinite; font-weight: bold; }
        @keyframes blink { 50% { opacity: 0.5; } }

        /* --- SECTION 7: HARDWARE --- */
        .hw-icon { font-size: 6rem; color: #333; transition: 0.3s; margin: 0 40px; cursor: pointer; }
        .hw-icon:hover { color: white; text-shadow: 0 0 30px white; transform: translateY(-20px); }

        /* --- SECTION 8: DEV CORNER --- */
        .code-block {
            background: #080810; padding: 30px; border-radius: 10px; border: 1px solid #333;
            font-family: 'Courier New', monospace; color: var(--accent-green); font-size: 1rem;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
        }

        /* --- SECTION 9: PRICING --- */
        .pricing-card {
            background: var(--bg-panel); padding: 60px 40px; border-radius: 20px; border: 1px solid #222;
            text-align: center; transition: 0.3s; position: relative; overflow: hidden;
        }
        .pricing-card:hover { transform: translateY(-10px); }
        .pricing-card.pro { border-color: var(--primary-neon); background: linear-gradient(160deg, #12002b, #0d0d14); }
        .pricing-card.pro::before { content:''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, var(--primary-neon), transparent); animation: rotate 4s linear infinite; opacity: 0.1; pointer-events: none; }
        @keyframes rotate { 100% { transform: rotate(360deg); } }

        /* --- SECTION 10: FAQ --- */
        .faq-item { background: transparent; border-bottom: 1px solid #333; padding: 25px 0; }
        .faq-q { font-size: 1.4rem; cursor: pointer; display: flex; justify-content: space-between; color: white; font-family: 'Orbitron'; transition: 0.3s; }
        .faq-q:hover { color: var(--accent-cyan); }
        .faq-a { max-height: 0; overflow: hidden; transition: 0.4s; color: var(--text-grey); margin-top: 10px; font-size: 1.1rem; padding-right: 50px; }
        .faq-item.open .faq-a { max-height: 200px; margin-top: 20px; }
        .faq-item.open .faq-q i { transform: rotate(45deg); color: var(--accent-red); }

        /* --- SECTION 11: FULL LIBRARY GRID --- */
        .games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
        .grid-card { background: #111; border-radius: 12px; border: 1px solid #222; transition: 0.3s; overflow: hidden; position: relative; }
        .grid-card:hover { border-color: var(--accent-gold); transform: scale(1.02); z-index: 5; }
        .grid-img-wrap { height: 200px; background: #1a1a1a; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
        /* Image tag styling */
        .grid-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
        .grid-card:hover .grid-img-wrap img { transform: scale(1.1); }
        .pro-badge { position: absolute; top: 10px; right: 10px; background: var(--primary-neon); color: white; padding: 2px 8px; font-size: 0.8rem; border-radius: 4px; font-weight: bold; z-index: 2; }
        .grid-actions { display: flex; gap: 10px; margin-top: 15px; }
        .btn-card-action { flex: 1; padding: 8px; border: 1px solid #333; background: transparent; color: #888; font-size: 0.9rem; transition: 0.3s; }
        .btn-card-action:hover { background: #222; color: white; border-color: white; }
        .btn-card-play { background: var(--accent-cyan); color: black; border: none; font-weight: bold; }
        .btn-card-play:hover { background: white; }

        /* --- ABOUT US SECTIONS --- */
        .hero-about { 
            min-height: 80vh; 
            display: flex; align-items: center; justify-content: center; text-align: center; 
            padding-top: 150px; 
        }
        
        .mission-box {
            background: rgba(128, 0, 255, 0.05);
            border: 1px solid rgba(128, 0, 255, 0.3);
            padding: 60px 40px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: 0.3s;
        }
        
        .mission-box:hover {
            background: rgba(128, 0, 255, 0.1);
            transform: translateY(-10px);
            box-shadow: 0 0 40px rgba(128, 0, 255, 0.2);
        }
        
        .team-member {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: 0.3s;
        }
        
        .team-member:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-10px);
            border-color: var(--accent-cyan);
        }
        
        .member-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-neon), var(--accent-cyan));
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            border: 4px solid var(--bg-panel);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 50px;
            border-left: 2px solid var(--primary-neon);
        }
        
        .timeline-year {
            position: absolute;
            left: -70px;
            top: 0;
            background: var(--primary-neon);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-family: 'Orbitron';
            font-weight: bold;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: 0.3s;
        }
        
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-cyan);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-family: 'Orbitron';
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-neon), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .value-card {
            padding: 40px;
            background: rgba(0, 243, 255, 0.05);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 15px;
            text-align: center;
            transition: 0.3s;
        }
        
        .value-card:hover {
            background: rgba(0, 243, 255, 0.1);
            transform: translateY(-10px);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--accent-cyan);
            margin-bottom: 20px;
        }


        /* --- CONTACT PAGE SPECIFIC STYLES --- */
        .contact-section {
            padding: 150px 0 100px;
        }
        
        .contact-card {
            background: var(--bg-panel);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 50px 40px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .contact-card:hover {
            border-color: var(--primary-neon);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(128, 0, 255, 0.1);
        }
        
        .contact-icon {
            font-size: 3.5rem;
            color: var(--primary-neon);
            margin-bottom: 25px;
            filter: drop-shadow(0 0 10px rgba(128, 0, 255, 0.5));
        }
        
        .contact-form {
            background: var(--bg-panel);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .form-control {
            background: rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
            color: white;
            padding: 15px 20px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            background: rgba(0,0,0,0.7);
            border-color: var(--primary-neon);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(128, 0, 255, 0.25);
        }
        
        .form-control::placeholder {
            color: var(--text-muted);
        }
        
        .form-label {
            color: var(--accent-cyan);
            font-weight: 600;
            margin-bottom: 10px;
            font-family: 'Orbitron';
            letter-spacing: 1px;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
            border-left: 4px solid var(--accent-cyan);
        }
        
        .contact-info-icon {
            font-size: 1.5rem;
            color: var(--accent-cyan);
            margin-right: 15px;
            min-width: 40px;
        }
        
        .contact-info-content h5 {
            color: white;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .contact-info-content p {
            color: var(--text-muted);
            margin: 0;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            height: 400px;
        }
        
        .support-hours {
            background: linear-gradient(135deg, rgba(128,0,255,0.1), rgba(0,243,255,0.1));
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
            border: 1px solid rgba(128,0,255,0.2);
        }
        
        .support-hours h4 {
            color: var(--accent-cyan);
            margin-bottom: 20px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .hours-item:last-child {
            border-bottom: none;
        }
        
        .hours-day {
            color: white;
            font-weight: 600;
        }
        
        .hours-time {
            color: var(--accent-green);
            font-weight: 600;
        }
        


        /* --- SECTION: DISCLAIMER CONTENT --- */
        .disclaimer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(13, 13, 20, 0.7);
            border-radius: 20px;
            border: 1px solid rgba(128, 0, 255, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .disclaimer-section {
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .disclaimer-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .disclaimer-section h3 {
            color: var(--accent-cyan);
            margin-bottom: 25px;
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .disclaimer-section h3 i {
            color: var(--primary-neon);
            filter: drop-shadow(0 0 8px var(--primary-neon));
        }

        .disclaimer-content {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .disclaimer-content ul {
            padding-left: 25px;
            margin: 20px 0;
        }

        .disclaimer-content li {
            margin-bottom: 15px;
            position: relative;
        }

        .disclaimer-content li:before {
            content: "▸";
            color: var(--accent-cyan);
            position: absolute;
            left: -20px;
        }

        .highlight-box {
            background: rgba(128, 0, 255, 0.1);
            border-left: 4px solid var(--primary-neon);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }

        .highlight-box.warning {
            background: rgba(255, 0, 60, 0.1);
            border-left-color: var(--accent-red);
        }

        .highlight-box.info {
            background: rgba(0, 243, 255, 0.1);
            border-left-color: var(--accent-cyan);
        }

        /* --- BACK TO GAMES BUTTON --- */
        .back-to-games {
            text-align: center;
            margin-top: 60px;
        }

        /* --- FAQ SPECIFIC STYLES --- */
        .faq-page-header {
            min-height: 70vh; 
            display: flex; align-items: center; justify-content: center; text-align: center; 
            padding-top: 150px; 
            position: relative;
        }
        
        .faq-search-container {
            max-width: 800px;
            margin: 0 auto 60px;
            position: relative;
        }
        
        .faq-search-input {
            background: rgba(10, 10, 15, 0.8);
            border: 1px solid var(--primary-neon);
            color: white;
            padding: 20px 30px;
            width: 100%;
            border-radius: 10px;
            font-size: 1.1rem;
            font-family: 'Rajdhani';
            letter-spacing: 1px;
            transition: 0.3s;
        }
        
        .faq-search-input:focus {
            outline: none;
            box-shadow: 0 0 30px rgba(128, 0, 255, 0.3);
            background: rgba(15, 15, 20, 0.9);
        }
        
        .faq-search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-cyan);
            font-size: 1.2rem;
        }
        
        .faq-category-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 80px;
        }
        
        .faq-category-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-muted);
            padding: 12px 30px;
            border-radius: 8px;
            font-family: 'Orbitron';
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: 0.3s;
            text-transform: uppercase;
        }
        
        .faq-category-btn:hover,
        .faq-category-btn.active {
            background: rgba(128, 0, 255, 0.2);
            border-color: var(--primary-neon);
            color: white;
            box-shadow: 0 0 20px rgba(128, 0, 255, 0.3);
        }
        
        .faq-main-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .faq-section {
            margin-bottom: 80px;
        }
        
        .faq-section-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(0, 243, 255, 0.2);
        }
        
        .faq-section-icon {
            width: 70px;
            height: 70px;
            background: rgba(128, 0, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--primary-neon);
        }
        
        .faq-section-icon i {
            font-size: 2rem;
            color: var(--accent-cyan);
        }
        
        .faq-item { 
            background: rgba(15, 15, 20, 0.5); 
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 20px;
            transition: 0.3s;
        }
        
        .faq-item:hover {
            border-color: rgba(0, 243, 255, 0.3);
            background: rgba(20, 20, 30, 0.6);
        }
        
        .faq-item.open {
            border-color: var(--primary-neon);
            background: rgba(128, 0, 255, 0.05);
        }
        
        .faq-q { 
            font-size: 1.3rem; 
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: white; 
            font-family: 'Rajdhani', sans-serif; 
            font-weight: 600;
            transition: 0.3s; 
            padding-right: 20px;
        }
        
        .faq-q:hover { color: var(--accent-cyan); }
        
        .faq-q i {
            transition: 0.4s;
            font-size: 1.2rem;
            color: var(--text-muted);
        }
        
        .faq-a { 
            max-height: 0; 
            overflow: hidden; 
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
            color: var(--text-muted); 
            margin-top: 0;
            font-size: 1.1rem; 
            line-height: 1.8;
        }
        
        .faq-item.open .faq-a { 
            max-height: 500px; 
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .faq-item.open .faq-q i { 
            transform: rotate(45deg); 
            color: var(--accent-red); 
        }
        
        .faq-contact-section {
            background: linear-gradient(135deg, rgba(128,0,255,0.1), rgba(0,243,255,0.05));
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin-top: 100px;
        }
        
        .help-card {
            background: rgba(10, 10, 15, 0.8);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
            transition: 0.3s;
        }
        
        .help-card:hover {
            border-color: var(--accent-cyan);
            transform: translateY(-5px);
        }

        /* --- GAMES GALLERY SECTION --- */
        .gallery-controls {
            background: rgba(13, 13, 20, 0.8);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 50px;
            backdrop-filter: blur(10px);
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid #333;
            color: var(--text-muted);
            padding: 10px 25px;
            border-radius: 8px;
            transition: 0.3s;
            margin: 5px;
            font-family: 'Rajdhani';
            font-weight: 600;
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary-neon);
            color: white;
            border-color: var(--primary-neon);
            box-shadow: 0 0 15px rgba(128, 0, 255, 0.3);
        }
        
        .search-box {
            background: rgba(0,0,0,0.5);
            border: 1px solid #333;
            border-radius: 10px;
            padding: 15px 20px;
            color: white;
            width: 100%;
            font-size: 1.1rem;
        }
        .search-box:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
        }

        /* --- GAME CARDS --- */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .game-card {
            background: var(--bg-panel);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }
        
        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary-neon);
            box-shadow: 0 20px 40px rgba(128, 0, 255, 0.3);
        }
        
        .game-card.featured::before {
            content: 'FEATURED';
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent-red);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 3;
            letter-spacing: 1px;
        }
        
        .game-card.pro::before {
            content: 'PRO';
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-neon);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 3;
            letter-spacing: 1px;
        }
        
        .game-card .card-image {
            height: 200px;
            background: #1a1a1a;
            position: relative;
            overflow: hidden;
        }
        
        .game-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        
        .game-card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .game-card .card-content {
            padding: 25px;
        }
        
        .game-card .game-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: white;
            font-family: 'Orbitron';
        }
        
        .game-card .game-description {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.5;
            height: 60px;
            overflow: hidden;
        }
        
        .game-card .game-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .game-card .game-genre {
            background: rgba(0, 243, 255, 0.1);
            color: var(--accent-cyan);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .game-card .game-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-green);
        }
        
        .game-card .game-price.free {
            color: var(--accent-cyan);
        }
        
        .game-card .card-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .game-card .btn-play {
            background: var(--accent-cyan);
            color: #000;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-family: 'Orbitron';
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            cursor: pointer;
        }
        
        .game-card .btn-play:hover {
            background: white;
            box-shadow: 0 0 20px var(--accent-cyan);
        }
        
        .game-card .btn-details {
            background: transparent;
            border: 1px solid #444;
            color: var(--text-muted);
            padding: 12px;
            border-radius: 8px;
            transition: 0.3s;
            cursor: pointer;
        }
        
        .game-card .btn-details:hover {
            border-color: var(--primary-neon);
            color: white;
            background: rgba(128, 0, 255, 0.1);
        }
        
        .game-card .btn-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            z-index: 3;
        }
        
        .game-card .btn-wishlist:hover {
            background: var(--accent-red);
            transform: scale(1.1);
        }
        
        .game-card .btn-wishlist.active {
            background: var(--accent-red);
            color: white;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 50px;
        }
        
        .page-btn {
            width: 50px;
            height: 50px;
            border: 1px solid #333;
            background: transparent;
            color: var(--text-muted);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            font-family: 'Rajdhani';
            font-weight: 600;
        }
        
        .page-btn:hover, .page-btn.active {
            background: var(--primary-neon);
            color: white;
            border-color: var(--primary-neon);
        }
        
        .page-btn.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        /* --- STATS BAR --- */
        .stats-bar {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat-item2 {
            text-align: center;
            padding: 15px;
        }
        
        .stat-number2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-neon);
            font-family: 'Orbitron';
        }
        
        .stat-label {
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* --- PRIVACY POLICY CONTENT --- */
        .privacy-hero { 
            min-height: 40vh; 
            display: flex; align-items: center; justify-content: center; text-align: center; 
            padding-top: 150px; 
        }
        
        .policy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px;
        }
        
        .policy-section {
            background: rgba(13, 13, 20, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            transition: transform 0.3s;
        }
        
        .policy-section:hover {
            transform: translateY(-5px);
            border-color: rgba(128, 0, 255, 0.3);
        }
        
        .policy-section h3 {
            color: var(--accent-cyan);
            border-bottom: 2px solid var(--primary-neon);
            padding-bottom: 15px;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .policy-content {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .policy-content ul {
            padding-left: 20px;
            margin: 15px 0;
        }
        
        .policy-content li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        
        .policy-content li::before {
            content: "•";
            color: var(--primary-neon);
            margin-right: 10px;
        }
        
        .update-date {
            background: rgba(128, 0, 255, 0.1);
            border: 1px solid var(--primary-neon);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 40px;
        }
        
        .contact-box {
            background: linear-gradient(145deg, rgba(0, 243, 255, 0.05), rgba(128, 0, 255, 0.05));
            border: 1px solid rgba(0, 243, 255, 0.2);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }

                /* --- TERMS OF USE SPECIFIC STYLES --- */
        .terms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .terms-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 150px;
        }

        .terms-content {
            background: rgba(13, 13, 20, 0.7);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 60px;
            margin-top: 50px;
            backdrop-filter: blur(10px);
        }

        .terms-section {
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .terms-section:last-child {
            border-bottom: none;
        }

        .terms-section h3 {
            color: var(--accent-cyan);
            margin-bottom: 25px;
            font-size: 1.8rem;
        }

        .terms-section p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .terms-list {
            list-style: none;
            padding-left: 0;
        }

        .terms-list li {
            color: var(--text-muted);
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }

        .terms-list li:before {
            content: '▸';
            color: var(--primary-neon);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .highlight-box {
            background: rgba(128, 0, 255, 0.1);
            border-left: 4px solid var(--primary-neon);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }

        .update-date2 {
            text-align: center;
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-top: 50px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
.a-link{text-decoration: none;}        