/* Core Variables - LITE MODE (Default) */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent: #0284c7;
    --accent-hover: #0369a1;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --font-main: 'Segoe UI', system-ui, sans-serif;
    --card-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* DARK MODE Variables */
body.dark-mode {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --accent: #38bdf8;
    --accent-hover: #7dd3fc;
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* Disclaimer */
.disclaimer-banner {
    background-color: #ef4444; color: white;
    text-align: center; padding: 10px 20px;
    font-size: 0.85rem; font-weight: bold;
    z-index: 1000; position: relative;
}

/* Navbar */
.navbar {
    position: sticky; top: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
}

.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px;
}
.nav-brand span { color: var(--accent); }

.nav-links a {
    color: var(--text-primary); text-decoration: none;
    margin-left: 30px; font-weight: 600; transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }

.nav-controls { display: flex; align-items: center; gap: 20px; }
.theme-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; transition: 0.2s; }
.theme-btn:hover { transform: scale(1.1); }

/* --- UPDATED HERO BANNER --- */
.hero-banner {
    position: relative;
    /* Dark gradient overlaid on top of your specific background image */
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 50%, var(--bg-primary) 100%), 
                url('https://images.squarespace-cdn.com/content/v1/52d6d1ede4b0b322e9c7a2ea/1585757840597-2O3BWHS9NZJOPRKOO8ST/reddit.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 5% 100px;
    text-align: center;
}

/* Force text white and add strong cinematic text-shadows */
.hero-content h1 {
    font-size: 3.8rem; font-weight: 900;
    margin-bottom: 15px; line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.9);
}
.hero-content h2 {
    font-size: 2.2rem; color: var(--accent);
    margin-bottom: 30px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.8);
}
.hero-features {
    list-style: none; display: flex; justify-content: center; gap: 30px;
    margin-bottom: 40px; font-size: 1.2rem; font-weight: 600;
    color: #f8fafc; text-shadow: 1px 2px 5px rgba(0,0,0,0.9);
}
.hero-cta-text {
    font-size: 1.2rem; color: #cbd5e1;
    margin-bottom: 35px; text-shadow: 1px 2px 5px rgba(0,0,0,0.9);
}

/* --- UPDATED BUTTONS --- */
.hero-buttons {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
    background: linear-gradient(45deg, #0ea5e9, #2563eb);
    color: #fff; padding: 15px 40px;
    border-radius: 50px; text-decoration: none;
    font-weight: bold; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
    transition: 0.3s; border: 2px solid transparent;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 25px rgba(37, 99, 235, 0.6); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px);
    color: #fff; padding: 15px 40px;
    border-radius: 50px; text-decoration: none;
    font-weight: bold; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); }

/* --- UPDATED CONTACT SECTION (Real QR Code) --- */
.contact-section { padding: 60px 5%; }
.contact-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 40px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--card-shadow); max-width: 1000px; margin: 0 auto;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 15px; }
.contact-info p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 25px; line-height: 1.6; }
.whatsapp-btn {
    display: inline-flex; align-items: center;
    background: #25D366; color: white; padding: 15px 30px;
    border-radius: 50px; text-decoration: none;
    font-weight: bold; font-size: 1.1rem;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3); transition: 0.3s;
}
.whatsapp-btn:hover { background: #1ebe57; transform: translateY(-3px); box-shadow: 0 12px 20px rgba(37, 211, 102, 0.4); }

.contact-qr { text-align: center; }
.contact-qr p { margin-bottom: 10px; font-weight: bold; color: var(--text-secondary); }
.qr-image { width: 160px; height: 160px; border-radius: 12px; border: 4px solid #fff; box-shadow: var(--card-shadow); }

/* Media Sections */
.media-section { padding: 80px 5%; }
.alt-bg { background-color: var(--bg-secondary); }
.section-header h2 { font-size: 2rem; margin-bottom: 30px; border-left: 5px solid var(--accent); padding-left: 15px; }

.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.media-card {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 2/3; background-size: cover; background-position: center;
    text-decoration: none; transition: 0.3s; box-shadow: var(--card-shadow);
}
.media-card:hover { transform: translateY(-8px) scale(1.02); }
.card-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px 15px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: white;
}
.card-overlay h3 { font-size: 1.1rem; text-shadow: 1px 1px 3px #000; }
.rank-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--accent); color: #fff; padding: 5px 12px;
    border-radius: 8px; font-weight: 900; font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* --- UPDATED GENRE GRID --- */
.genre-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.genre-card {
    position: relative; height: 130px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; overflow: hidden;
    background-size: cover; background-position: center;
    transition: 0.3s; box-shadow: var(--card-shadow);
}
/* This pseudo-element creates a dark tint over ANY image you upload */
.genre-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); transition: 0.3s;
}
.genre-card:hover::before { background: rgba(0, 0, 0, 0.4); }
.genre-card:hover { transform: scale(1.03); }
/* The text sits ON TOP of the dark tint */
.genre-card h3 {
    position: relative; z-index: 1; color: white;
    font-size: 1.6rem; font-weight: 900; letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

/* --- NEW FAQ SECTION --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-radius: 10px; overflow: hidden; background: var(--bg-primary); border: 1px solid var(--glass-border); box-shadow: var(--card-shadow); }
.faq-question {
    width: 100%; text-align: left; padding: 20px;
    background: none; border: none; font-size: 1.2rem; font-weight: 700;
    color: var(--text-primary); cursor: pointer; transition: 0.3s;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent); }
.faq-question.active::after { content: '−'; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    background: var(--bg-secondary);
}
.faq-answer p { padding: 0 20px 20px; color: var(--text-secondary); line-height: 1.6; }

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed; bottom: -60px; right: 30px;
    background: var(--accent); color: white; border: none;
    width: 50px; height: 50px; border-radius: 50%;
    font-size: 1.5rem; font-weight: bold; cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: 0.4s; z-index: 999;
}
.scroll-top-btn.visible { bottom: 30px; }
.scroll-top-btn:hover { background: var(--accent-hover); transform: translateY(-5px); }

/* Scroll Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Footer */
.pro-footer { background: var(--bg-secondary); padding: 80px 5% 30px; border-top: 1px solid var(--glass-border); }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.brand-col p { margin-top: 15px; color: var(--text-secondary); line-height: 1.6; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 900; color: var(--text-primary); }
.footer-logo span { color: var(--accent); }
.footer-column h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--text-primary); }
.footer-column a { display: block; color: var(--text-secondary); text-decoration: none; margin-bottom: 12px; transition: 0.3s; }
.footer-column a:hover { color: var(--accent); }
.footer-bottom { text-align: center; color: var(--text-secondary); border-top: 1px solid var(--glass-border); padding-top: 20px; }

/* Mobile Menu */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1001; }
.hamburger span { width: 25px; height: 3px; background-color: var(--text-primary); transition: 0.3s; }
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
    background: var(--bg-secondary); display: flex; flex-direction: column;
    padding: 100px 30px; transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 998; box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}
.mobile-menu.active { right: 0; }
.mobile-link { color: var(--text-primary); text-decoration: none; font-size: 1.5rem; margin-bottom: 25px; font-weight: 700; }

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .contact-card { flex-direction: column; text-align: center; gap: 30px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-features { flex-direction: column; gap: 10px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
}