      /* --- 1. RESET & VARIABLES --- */
        :root {
            --bg-body: #050505;       /* Deepest Black */
            --bg-card: #121212;       /* Card Background */
            --bg-sidebar: #0a0a0a;    /* Sidebar */
            --bg-hover: #1f1f1f;      
            
            --text-primary: #ffffff;
            --text-secondary: #9ca3af;
            
            --accent-green: #22c55e;  /* Brighter, modern green */
            --accent-green-dark: #15803d;
            
            --font-main: 'Inter', system-ui, -apple-system, sans-serif;
            --sidebar-width: 260px;
            --header-height-mobile: 60px;
            --border-color: #27272a;
  
    --accent-green: #2ecc71; /* Example green */
    --accent-green-rgb: 46, 204, 113; /* Same green in RGB */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        button { cursor: pointer; font-family: inherit; border: none; outline: none; }

        /* --- 2. LAYOUT UTILITIES --- */
        .app-container {
            display: flex;
            min-height: 100vh;
            position: relative;
        }

        /* --- 3. MOBILE NAV CONTROLLER (Checkbox Hack) --- */
        #nav-toggle { display: none; }

        /* The Backdrop Overlay (Click outside to close) */
        .nav-backdrop {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(2px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        /* Logic: When checked, show sidebar and backdrop */
        #nav-toggle:checked ~ .nav-backdrop {
            opacity: 1;
            visibility: visible;
        }
        #nav-toggle:checked ~ .app-container .sidebar {
            transform: translateX(0);
            box-shadow: 5px 0 20px rgba(0,0,0,0.8);
        }
        /* Lock body scroll when menu open (optional visuals) */
        #nav-toggle:checked ~ .app-container {
            overflow: hidden; 
        }

        /* --- 4. SIDEBAR --- */
        .sidebar {
            width: var(--sidebar-width);
            background-color: var(--bg-sidebar);
            border-right: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            z-index: 999;
            transform: translateX(-100%); /* Hidden on mobile */
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .sidebar-brand {
            height: var(--header-height-mobile);
            display: flex;
            align-items: center;
            padding: 0 1.5rem;
            border-bottom: 1px solid var(--border-color);
            background: var(--bg-sidebar);
            position: sticky;
            top: 0;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-icon { color: var(--accent-green); }

        .nav-menu {
            padding: 1.5rem 1rem;
            flex: 1;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0.85rem 1rem;
            margin-bottom: 4px;
            border-radius: 8px;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--bg-hover);
            color: #fff;
        }
        .nav-link i { width: 24px; text-align: center; }
        .nav-link:hover i, .nav-link.active i { color: var(--accent-green); }

        .badge {
            margin-left: auto;
            background: #ef4444;
            color: white;
            font-size: 0.6rem;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- 5. MAIN CONTENT WRAPPER --- */
        .main-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0; /* Prevents grid blowout */
            width: 100%;
        }

        /* --- 6. HEADER (Mobile & Desktop Unified Logic) --- */
        .top-header {
            height: var(--header-height-mobile);
            background-color: rgba(5, 5, 5, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1rem;
            position: sticky;
            top: 0;
            z-index: 900;
        }

        /* Hamburger (Mobile Only) */
        .hamburger-btn {
            font-size: 1.25rem;
            color: #fff;
            padding: 0.5rem;
            cursor: pointer;
            display: block;
        }

        /* Desktop Actions */
        .desktop-nav-items { display: none; }
        
        /* Mobile Logo in Header */
        .mobile-logo { display: flex; }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn {
            font-weight: 600;
            border-radius: 6px;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .btn-ghost { background: transparent; color: #fff; border: 1px solid #333; }
        .btn-ghost:hover { border-color: #666; background: #1a1a1a; }
        
        .btn-primary { 
            background: var(--accent-green); 
            color: #fff; 
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
        }
        .btn-primary:hover { 
            background: var(--accent-green-dark); 
            transform: translateY(-1px);
        }
        .btn-sm { padding: 0.4rem 0.8rem; font-size: 0.85rem; }

        /* --- 7. CONTENT SECTIONS --- */
        .content-container {
            padding: 1.5rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        /* Typography Scaling */
        h1.page-title {
            color: #fff;
            margin: 1.5rem 0 2.5rem 0;
            font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive sizing */
            font-weight: 900;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        /* Hero Banner */
        .hero-banner {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            min-height: 400px;
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            border: 1px solid #222;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.3) 100%),
                        url('Oscarspin.webp'); 
            background-size: cover;
            background-position: center;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            max-width: 600px;
        }
        .hero-tag {
            display: inline-block;
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.3);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        .hero-headline {
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1.1;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        .hero-headline span { color: var(--accent-green); display: block; }
        
    .hero-btn {
    background-color: var(--accent-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    /* Add the animation here */
    animation: pulse-glow 2s infinite;
}

.hero-btn:hover { 
    transform: translateY(-2px); 
    background: var(--accent-green-dark); 
    /* Optional: stop animation on hover */
    animation-play-state: paused; 
}

/* Pulse and Glow Animation */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--accent-green-rgb), 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(var(--accent-green-rgb), 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--accent-green-rgb), 0);
    }
}

        /* Intro Text */
        .intro-text {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
            color: var(--text-secondary);
        }
        .intro-text h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }

        /* Games Grid */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .section-title { font-size: 1.25rem; color: #fff; font-weight: 700; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--accent-green); }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Mobile: 2 col */
            gap: 1rem;
            margin-bottom: 4rem;
        }
        
        .game-card {
            background-color: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            border: 1px solid #222;
            transition: transform 0.2s, border-color 0.2s;
            cursor: pointer;
        }
        .game-card:hover { transform: translateY(-4px); border-color: var(--accent-green); }
        .game-thumb { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
        .game-card:hover .game-thumb { opacity: 0.6; }
        .game-title-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 20px 10px 10px;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
        }

        /* Table & Info */
        .info-section {
            background-color: var(--bg-card);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            margin-bottom: 3rem;
            overflow: hidden; /* Contains child margins */
        }
        .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 500px; /* Force scroll on small screens */
            color: var(--text-secondary);
        }
        .info-table th { text-align: left; padding: 1rem; color: #fff; border-bottom: 2px solid var(--border-color); font-size: 0.85rem; text-transform: uppercase; }
        .info-table td { padding: 1rem; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }
        .val-highlight { color: var(--accent-green); font-weight: 700; }
        /* 1. Headings */
.info-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: -0.5px;
}

.info-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Add a green vertical bar before H3s for style */
.info-section h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.2em;
    background: var(--accent-green);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

/* 2. Paragraphs */
.info-section p {
    color: var(--text-secondary);
    line-height: 1.8; /* Increased for better readability on dark mode */
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* Make important words pop in white */
.info-section strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* 3. Links inside text */
.info-section a {
    color: var(--accent-green);
    font-weight: 600;
    border-bottom: 1px dashed rgba(34, 197, 94, 0.5);
}
.info-section a:hover {
    color: #4ade80; /* Lighter green on hover */
    border-bottom-style: solid;
}

/* 4. Styled Lists (Replaces default bullets with glowing dots) */
.info-section ul, 
.info-section ol {
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.info-section li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

/* Custom Green Bullet */
.info-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px; /* Vertically align with text */
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

/* 5. Blockquote / Callout Box */
.info-section blockquote {
    background: rgba(34, 197, 94, 0.05); /* Very faint green bg */
    border-left: 4px solid var(--accent-green);
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #e5e7eb;
}

        /* Payment */
        .payment-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin: 2rem 0 3rem 0;
            opacity: 0.8;
        }
        .pay-pill {
            background: var(--bg-card);
            border: 1px solid #333;
            color: #fff;
            padding: 0.5rem 1.25rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }
        .review-card {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .stars { color: #eab308; margin-bottom: 0.5rem; font-size: 0.85rem; }
        .review-text { font-style: italic; color: #d1d5db; margin-bottom: 1rem; font-size: 0.9rem; }
        .reviewer-name { font-weight: 700; color: #fff; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
        .avatar-circle { width: 32px; height: 32px; background: #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #888; }

        /* FAQ */
        .faq-container { max-width: 800px; margin: 0 auto 4rem auto; }
        details { background-color: var(--bg-card); margin-bottom: 0.75rem; border-radius: 8px; border: 1px solid var(--border-color); }
        summary { padding: 1rem; cursor: pointer; font-weight: 600; color: #fff; display: flex; justify-content: space-between; align-items: center; list-style: none; outline: none; }
        summary::-webkit-details-marker { display: none; }
        summary:after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent-green); transition: transform 0.3s; font-size: 0.8rem; }
        details[open] summary:after { transform: rotate(180deg); }
        .faq-answer { padding: 0 1rem 1rem 1rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

        /* Footer */
        .site-footer {
            background-color: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 3rem 1rem;
            margin-top: auto; /* Push to bottom */
        }
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            gap: 2rem;
            text-align: center;
        }
        .footer-links ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin: 1.5rem 0; }
        .footer-links a { color: #6b7280; font-weight: 500; font-size: 0.9rem; }
        .footer-links a:hover { color: #fff; }

        /* --- 8. DESKTOP MEDIA QUERIES (min-width: 1024px) --- */
        @media (min-width: 1024px) {
            /* Sidebar becomes sticky on desktop */
            .sidebar {
                transform: translateX(0);
                position: sticky;
                top: 0;
                height: 100vh;
                border-right: 1px solid var(--border-color);
                z-index: 100;
            }

            /* Hide Mobile Nav Elements */
            .hamburger-btn { display: none; }
            .mobile-logo { display: none; }
            .nav-backdrop { display: none; } /* Never show backdrop on desktop */
            
            /* Show Desktop Header Elements */
            .desktop-nav-items { 
                display: flex; 
                flex: 1; 
                margin-left: 2rem;
                gap: 1rem;
            }
            .mode-switch {
                background: #1a1a1a;
                padding: 4px;
                border-radius: 99px;
                display: flex;
            }
            .mode-btn {
                padding: 6px 16px;
                border-radius: 99px;
                font-size: 0.85rem;
                color: #888;
                font-weight: 600;
                cursor: pointer;
                transition: 0.2s;
            }
            .mode-btn.active { background: #333; color: #fff; }
            .mode-btn:hover:not(.active) { color: #fff; }

            /* Desktop Padding adjustments */
            .content-container { padding: 2rem 3rem; }
            .hero-content { padding: 4rem; }
            
            /* Grids */
            .games-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
            .reviews-grid { grid-template-columns: repeat(3, 1fr); }
            
            /* Footer */
            .footer-content { text-align: left; grid-template-columns: 1fr 2fr; }
            .footer-links ul { justify-content: flex-end; }
            
            .top-header { padding: 0 2rem; height: 80px; }
        }

        /* Large Desktop */
        @media (min-width: 1440px) {
             .games-grid { grid-template-columns: repeat(5, 1fr); }
        }

        /* --- 9. MOBILE SPECIFIC TWEAKS (< 768px) --- */
        @media (max-width: 767px) {
            /* * CLEAN HERO LAYOUT
             * Hides the small tag and the description text on mobile
             * ensuring only H1, Banner Headline, and Button are prominent.
             */
            .hero-tag, 
            .hero-content p {
                display: none; 
            }
            
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 2rem 1rem;
            }

            .hero-headline {
                margin-bottom: 1.5rem;
                font-size: 2.2rem; /* Ensure readable impact */
            }

            .hero-banner {
                min-height: auto; /* Allow shrink to content */
                aspect-ratio: auto;
            }
        }