 /* === Google Font Import === */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

    /* === CSS Variables for easy theme management === */
    :root {
        --color-background: #121212;
        --color-sidebar-bg: #000000;
        --color-card-bg: #1a1a1a;
        --color-gold: #c5a978;
        --color-gold-hover: #d3b88a;
        --color-text-primary: #ffffff;
        --color-text-secondary: #a0a0a0;
        --border-radius-main: 12px;
        --border-radius-btn: 8px;
        --sidebar-width: 260px;
        --color-gold-rgb: 197, 169, 120; 
    }


    @keyframes pulse-animation {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--color-gold-rgb), 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(var(--color-gold-rgb), 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--color-gold-rgb), 0);
      }
    }

    /* === Basic Page Styles === */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--color-background);
        color: var(--color-text-secondary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* === Main Layout (Sidebar + Main Content) === */
    .page-wrapper {
        display: flex;
        transition: margin-left 0.4s ease;
    }

    /* === Sidebar Navigation === */
    .sidebar {
        width: var(--sidebar-width);
        background-color: var(--color-sidebar-bg);
        padding: 24px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        border-right: 1px solid #222;
        transition: transform 0.4s ease;
        z-index: 100;
    }
    .page-wrapper.sidebar-collapsed .sidebar {
        transform: translateX(-100%);
    }
    .page-wrapper.sidebar-collapsed .main-content {
        margin-left: 0;
        width: 100%;
    }
    .sidebar .logo {
        font-size: 28px;
        font-weight: 700;
        color: var(--color-gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 2rem;
        text-align: center;
    }
    .sidebar .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 2rem;
    }
    .sidebar .auth-buttons .btn {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--color-text-secondary);
        border-radius: var(--border-radius-btn);
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .sidebar .auth-buttons .btn-login { background: transparent; color: var(--color-text-primary); }
    .sidebar .auth-buttons .btn-login:hover { background-color: #222; }
    .sidebar .auth-buttons .btn-signup { background: var(--color-gold); color: #000; border-color: var(--color-gold); }
    .sidebar .auth-buttons .btn-signup:hover { background: var(--color-gold-hover); }
    .sidebar-nav {
        list-style: none;
        flex-grow: 1;
    }
    .sidebar-nav li a {
        display: block;
        padding: 12px 16px;
        color: var(--color-text-secondary);
        text-decoration: none;
        font-size: 16px;
        border-radius: var(--border-radius-btn);
        margin-bottom: 8px;
        transition: background-color 0.3s, color 0.3s;
    }
    .sidebar-nav li a:hover {
        background-color: var(--color-card-bg);
        color: var(--color-text-primary);
    }

    /* === Main Content Area === */
    .main-content {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        padding: 0;
        transition: margin-left 0.4s ease, width 0.4s ease;
    }
    .main-header {
        padding: 15px 20px;
        background: var(--color-background); 
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #222;
        position: sticky;
        top: 0;
        z-index: 90;
    }
    .sidebar-toggle-btn {
        background: var(--color-card-bg);
        border: 1px solid #444;
        color: var(--color-text-primary);
        width: 40px;
        height: 40px;
        font-size: 24px;
        cursor: pointer;
        border-radius: var(--border-radius-btn);
    }
    .btn-play-now {
        display: block;
        padding: 10px 20px;
        background-color: var(--color-gold);
        color: #000;
        border: none;
        border-radius: var(--border-radius-btn);
        font-weight: 700; 
        font-size: 15px;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        animation: pulse-animation 2s infinite;
    }
    .btn-play-now:hover {
        background-color: var(--color-gold-hover);
        text-decoration: none;
        animation-play-state: paused; 
    }
      /* === Custom Styles for App Page === */
    .app-download-buttons {
        display: flex;
        gap: 15px;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    .btn-app-download {
        display: inline-block;
        padding: 12px 25px;
        border-radius: var(--border-radius-btn);
        background-color: var(--color-gold);
        color: #000;
        border: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease;
        text-align: center;
    }
    .btn-app-download:hover {
        background-color: var(--color-gold-hover);
        text-decoration: none;
    }
    .install-steps {
        padding-left: 20px;
    }
    .install-steps li {
        margin-bottom: 10px;
    }

    /* === Sections & Hero === */
    section { padding: 60px 40px; }
    .hero-section {
        min-height: 70vh;
        background: url('https://images.unsplash.com/photo-1542835948-c837136c4f69?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 40px 0 80px;
        position: relative;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 100%);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-content .btn-hero {
        padding: 15px 40px;
        border-radius: var(--border-radius-btn);
        background-color: var(--color-gold);
        color: #000;
        border: none;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .hero-content .btn-hero:hover { background-color: var(--color-gold-hover); text-decoration: none; }
    
    /* === General Content & Typography === */
    h1 { font-size: 3.5rem; color: var(--color-text-primary); margin-bottom: 1.5rem; font-weight: 700; line-height: 1.2; }
    h2 { font-size: 2.5rem; color: var(--color-text-primary); margin-bottom: 2rem; font-weight: 700; }
    h3 { font-size: 1.5rem; color: var(--color-gold); margin-top: 2.5rem; margin-bottom: 1rem; }
    p { margin-bottom: 1rem; max-width: 1000px; }
    a { color: var(--color-gold); text-decoration: none; }
    a:hover { text-decoration: underline; }
    
    /* === Cards & Table of Contents === */
    .toc-card {
        background-color: var(--color-card-bg);
        border: 1px solid #2a2a2a;
        border-radius: var(--border-radius-main);
        padding: 25px;
    }
    .toc-list { list-style: none; columns: 2; column-gap: 40px; }
    .toc-list li { margin-bottom: 10px; }
    .toc-list a { font-weight: 600; font-size: 1.1rem; }
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 24px;
        margin-bottom: 40px;
    }
    .card {
        background: var(--color-card-bg);
        border-radius: var(--border-radius-main);
        overflow: hidden;
        text-align: center;
        padding: 20px;
        border: 1px solid #2a2a2a;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
    .card img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--border-radius-btn); margin-bottom: 15px; }
    .card h4 { font-size: 1.2rem; color: var(--color-text-primary); margin-bottom: 8px; }
    .card p { font-size: 0.95rem; color: var(--color-text-secondary); margin-bottom: 0; }

     /* === Login Form Styles === */
    .login-form-wrapper {
        max-width: 450px;
    }
    .login-form-wrapper label {
        display: block;
        font-weight: 600;
        color: var(--color-text-primary);
        margin-bottom: 8px;
    }
    .login-form-wrapper input[type="email"],
    .login-form-wrapper input[type="password"] {
        width: 100%;
        padding: 14px;
        background-color: var(--color-card-bg);
        border: 1px solid #333;
        border-radius: var(--border-radius-btn);
        color: var(--color-text-primary);
        font-size: 16px;
        margin-bottom: 1rem;
    }
    .login-form-wrapper .btn-submit {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        border: 1px solid var(--color-gold);
        background: var(--color-gold);
        color: #000;
        border-radius: var(--border-radius-btn);
        transition: background-color 0.3s ease;
        text-align: center;
        text-decoration: none;
    }
    .login-form-wrapper .btn-submit:hover {
        background: var(--color-gold-hover);
        text-decoration: none;
    }
    .login-form-wrapper .forgot-password-link {
        display: block;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.95rem;
    }
    .btn-create-account {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--color-gold);
        color: #000;
        border: none;
        border-radius: var(--border-radius-btn);
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .btn-create-account:hover {
        background-color: var(--color-gold-hover);
        text-decoration: none;
    }
    
      /* === NEW STYLES FOR REVIEW PAGE === */
    .review-table {
        width: 100%;
        margin-bottom: 2rem;
        border-collapse: collapse;
        background-color: var(--color-card-bg);
        border: 1px solid #2a2a2a;
        border-radius: var(--border-radius-main);
        overflow: hidden;
    }
    .review-table th, .review-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #2a2a2a;
    }
    .review-table th {
        color: var(--color-gold);
        font-size: 1.1rem;
    }
    .review-table tr:last-child td {
        border-bottom: none;
    }
    .pros-cons-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 2rem;
    }
    .pros-cons-container h4 {
        font-size: 1.2rem;
        color: var(--color-text-primary);
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--color-gold);
        padding-bottom: 8px;
    }
    .pros-cons-list {
        list-style: none;
        padding-left: 0;
    }
    .pros-cons-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }
    .pros-cons-list.pros li::before {
        content: '✔';
        color: #4CAF50;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    .pros-cons-list.cons li::before {
        content: '✖';
        color: #F44336;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

     
    /* === Custom Table for Bonus Codes === */
    .content-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        font-size: 0.95rem;
    }
    .content-table th, .content-table td {
        border: 1px solid #2a2a2a;
        padding: 12px 15px;
        text-align: left;
    }
    .content-table th {
        background-color: var(--color-card-bg);
        color: var(--color-gold);
        font-weight: 600;
    }
    .content-table tr:nth-child(even) {
        background-color: #1f1f1f;
    }

    /* === Footer === */
    .page-footer { background: var(--color-sidebar-bg); padding: 40px; margin-top: 40px; }
    .footer-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; list-style: none; margin-bottom: 40px; }
    .footer-nav a { color: var(--color-text-secondary); transition: color 0.3s; }
    .footer-nav a:hover { color: var(--color-gold); text-decoration: none; }
    .footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 20px; font-size: 0.9rem; }

    @media (max-width: 992px) {
        
        .sidebar { transform: translateX(-100%); box-shadow: 5px 0 15px rgba(0,0,0,0.2); }
        .main-content { width: 100%; margin-left: 0; }
        .page-wrapper.sidebar-mobile-open .sidebar { transform: translateX(0); }
        .page-wrapper.sidebar-mobile-open::after {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 99;
        }

        
         .btn-play-now {
        display: none;
        padding: 10px 20px;
        background-color: var(--color-gold);
        color: #000;
        border: none;
        border-radius: var(--border-radius-btn);
        font-weight: 700; 
        font-size: 15px;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        animation: pulse-animation 2s infinite;
    }
    .btn-play-now:hover {
        background-color: var(--color-gold-hover);
        text-decoration: none;
        animation-play-state: paused; 
    }


        
        .hero-section {
            padding: 40px 20px 60px;
            text-align: center; 
            justify-content: center; 
        }
        .hero-content h1 {
            font-size: 2.5rem; 
            line-height: 1.3;  
        }
        .hero-content p {
            font-size: 1.1rem;
        }
        .hero-content .btn-hero {
            margin: 0 auto; 
        }
        
        section { padding: 40px 20px; }
        h2 { font-size: 2rem; }
        .toc-list { columns: 1; }
    }

    
    @media (max-width: 480px) {
        .hero-section {
            padding-top: 30px;
            padding-bottom: 50px;
        }
        .hero-content h1 {
            font-size: 2rem; 
            line-height: 1.25;
        }
        .hero-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .hero-content .btn-hero {
            font-size: 16px;
            padding: 12px 30px;
        }
        h2 {
            font-size: 1.8rem;
        }
    }
