/* ── Weekly Shows – Shared Stylesheet ── */

:root {
    --bg: #0b0f19;
    --bg-soft: #0f1526;
    --card: #111827;
    --card-hover: #1f2937;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --brand: #e11d48;
    /* Default/Fallback (Red) */
    --brand-2: #22d3ee;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* Brand Overrides based on body class */
body.brand-raw {
    --show-color: #ef4444;
    /* Red */
    --show-gradient: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(11, 15, 25, 1) 40%, rgba(239, 68, 68, 0.05) 100%);
}

body.brand-smackdown {
    --show-color: #3b82f6;
    /* Blue */
    --show-gradient: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(11, 15, 25, 1) 40%, rgba(59, 130, 246, 0.05) 100%);
}

body.brand-nxt {
    --show-color: #f59e0b;
    /* Gold/Yellow */
    --show-gradient: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(11, 15, 25, 1) 40%, rgba(245, 158, 11, 0.05) 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

/* Layout */
.container {
    width: min(1100px, 92%);
    margin-inline: auto
}

/* ── Back Nav ── */
.back-nav {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: rgba(11, 15, 25, .9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.back-nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}

.back-nav a:hover,
.back-nav .active {
    color: var(--show-color)
}

.back-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.back-nav .nav-right {
    display: flex;
    gap: 14px
}

.back-nav .nav-right a {
    font-size: 13px
}

/* ── Hero Banner ── */
.show-hero {
    position: relative;
    padding: 70px 0 60px;
    text-align: center;
    overflow: hidden;
    background: var(--show-gradient);
}

.show-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--show-color), transparent);
    opacity: 0.5;
}

.show-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid var(--show-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--show-color);
}

.show-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.show-hero .tagline {
    color: var(--muted);
    font-size: clamp(15px, 2vw, 18px);
    max-width: 650px;
    margin: 0 auto 24px;
}

/* ── Netflix India Banner ── */
.netflix-banner {
    background: linear-gradient(90deg, #E50914 0%, #b81d24 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.3);
    margin-bottom: 24px;
}

.netflix-banner svg {
    width: 24px;
    height: 24px;
    fill: currentColor
}

/* ── Info Grid ── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 10px 0 40px;
}

.info-card {
    background: linear-gradient(180deg, var(--card), var(--bg-soft));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform .25s, border-color .25s;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .15)
}

.info-card h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.info-card .info-highlight {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--show-color);
    margin-bottom: 6px;
}

.info-card a {
    color: var(--show-color);
    font-weight: 600;
    transition: color .2s
}

.info-card a:hover {
    color: #fff;
    text-decoration: underline
}

/* ── Section Titles ── */
.section-heading {
    padding: 40px 0 20px;
}

.section-heading h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--show-color);
}

.section-heading p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 6px
}

/* ── Roster / Champion Cards ── */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.champ-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.champ-card .title-name {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.champ-card .superstar-name {
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
}

/* ── Social Share ── */
.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 40px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.share-whatsapp {
    background: #25d366
}

.share-twitter {
    background: #1d9bf0
}

.share-facebook {
    background: #1877f2
}

.share-copy {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15)
}

/* ── FAQ Accordion ── */
.faq-section {
    padding: 10px 0 50px
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    margin-bottom: 10px;
    background: var(--card);
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, .15)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--show-color);
    transition: transform .25s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-question::after {
    content: '−'
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ── Footer ── */
.show-footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 30px 0 20px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0), rgba(11, 15, 25, .95));
}

.show-footer p {
    margin: 6px 0
}

.show-footer a {
    color: var(--show-color);
    transition: color .2s
}

.show-footer a:hover {
    text-decoration: underline
}

.show-footer small {
    color: #6b7280;
    font-size: 12px
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
    opacity: 1;
    transform: none
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .show-hero {
        padding: 40px 0 35px
    }

    .info-grid {
        grid-template-columns: 1fr
    }

    .roster-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .share-btn {
        padding: 9px 14px;
        font-size: 12px
    }

    .back-nav .nav-right {
        gap: 10px
    }

    .back-nav .nav-right a {
        font-size: 12px
    }
}