/* --- Theme Variables (Admin-flavored: cool dark gray + gold) --- */
:root {
    --dark-navy: #0f1115;   /* page background */
    --navy: #181b21;        /* surface (cards, tables) */
    --surface-2: #1f2229;   /* table header row, hover */
    --border: #2a2e36;
    --border-strong: #3a3e47;
    --light-blue: #E0E0E0;  /* legacy var kept for older rules */
    --slate: #9aa0a6;       /* body text */
    --light-slate: #f1f3f5; /* headings */
    --muted: #6b7280;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gold-bright: #e6c454;
}

/* --- General Body Styles --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--slate);
    background-color: var(--dark-navy);
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

main {
    /* Main content container */
}

h1, h2, h3 {
    color: var(--light-slate);
}
h1 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    letter-spacing: -0.01em;
    text-transform: none;
    border: none;
    padding-bottom: 0;
    margin-bottom: 1.25rem;
}
h2 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3;
}
h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-bright);
}

/* --- Header & Navigation --- */
header {
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 2rem;
    border-bottom: 1px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
header.scrolled {
    height: 60px;
    background: rgba(15, 17, 21, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 175, 55, 0.6);
}
.header-logo { flex: 1; display: flex; justify-content: flex-start; }
.header-logo img { max-height: 100px; width: auto; transition: max-height 0.3s ease; }
header.scrolled .header-logo img { max-height: 75px; }
.main-nav { flex: 2; display: flex; justify-content: center; }
.header-countdown {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-align: right;
    
    background: linear-gradient(to right, var(--gold) 20%, var(--white) 40%, var(--gold) 60%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: sheen 5s linear infinite;
}
.header-countdown .no-event {
    background: none;
    color: var(--gold);
    background-clip: unset;
    -webkit-background-clip: unset;
    animation: none;
}
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: nowrap; justify-content: center; }
.main-nav ul li { position: relative; display: flex; align-items: center; }
.main-nav ul li a {
    color: var(--slate);
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    height: 80px;
    transition: color 0.3s ease, height 0.3s ease;
    position: relative;
}
.main-nav ul li a > span { white-space: nowrap; }
.main-nav ul li a svg { opacity: 0.85; transition: opacity 0.2s ease; }
.main-nav ul li a:hover svg,
.main-nav ul li:hover > a svg { opacity: 1; }
/* Subtle separator between nav items */
.main-nav ul li + li::before {
    content: "";
    width: 1px;
    height: 16px;
    background: rgba(170, 170, 170, 0.15);
    display: block;
    flex-shrink: 0;
}
/* Dropdown chevron indicator */
.dropdown > a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 1.5px solid var(--slate);
    border-bottom: 1.5px solid var(--slate);
    transform: rotate(45deg);
    margin-left: 6px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    order: 1;
}
.dropdown:hover > a::before {
    transform: rotate(-135deg);
    border-color: var(--gold);
}
header.scrolled .main-nav ul li a { height: 60px; }
.main-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
.main-nav ul li a:hover::after,
.main-nav ul li:hover > a::after {
    width: calc(100% - 30px);
    left: 15px;
}
.main-nav ul li a:hover,
.main-nav ul li:hover > a { color: var(--gold); }

/* --- Dropdown Menu Styles --- */
.dropdown-content {
    position: absolute;
    top: 80px;
    left: 0;
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 100;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: none;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, top 0.3s ease;
    pointer-events: none;
    transition-delay: 0.15s;
}
header.scrolled .dropdown-content { top: 60px; }
.dropdown:hover .dropdown-content {
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-content a {
    height: 50px !important;
    color: var(--slate);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    padding: 6px 16px;
    display: block;
    text-align: left;
    height: auto;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
    border-left: 2px solid transparent;
}
.dropdown-content a:hover {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.08);
    border-left-color: var(--gold);
    padding-left: 20px;
}

/* --- Swiper Force Styles --- */
.swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.swiper-slide {
    flex-shrink: 0;
    height: auto;
    position: relative;
}
/* CSS-only marquee. Replaces the old Swiper-based ticker that could
   permanently hide itself if JS init failed. No JS, no race condition —
   slides are flex children scrolling via @keyframes. Hover pauses for
   accessibility. */
.shoot-marquee {
    overflow: hidden;
    width: 100%;
}
.shoot-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: shoot-marquee-scroll var(--marquee-duration, 60s) linear infinite;
}
.shoot-marquee:hover .shoot-marquee-track,
.shoot-marquee:focus-within .shoot-marquee-track {
    animation-play-state: paused;
}
@keyframes shoot-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .shoot-marquee-track {
        animation: none;
        overflow-x: auto;
    }
}

/* ... (All previous CSS is the same until the Ticker/Slider Sections) ... */

/* --- Ticker/Slider Sections --- */
.news-ticker-container, .promos-slider-container {
    background-color: #000000;
    padding: 1.5rem 0;
    position: relative; /* All containers need this for z-index context */
}
/* Reserve height so the visibility:hidden pre-init swiper doesn't cause
   layout shift when JS swaps in the real layout. Slides are 150 / 200 px
   tall + 1.5rem padding. */
/* No min-height needed: the CSS marquee has no FOUC moment and slides
   self-size from the aspect-ratio rules below. */
.news-ticker-container {
    border-top: 2px solid var(--gold);
    margin-top: -80px; /* Pulls the container up over the hero */
    z-index: 4; /* Ensures it's on top */
}
.promos-slider-container {
    border-bottom: 2px solid var(--gold);
}
.swiper {
    width: 100%;
}
.news-ticker-container .ticker-slide {
    width: calc((100vw - 120px) / 5); /* 5 slides per viewport, accounting for gaps */
    aspect-ratio: 5 / 2;
    height: auto;
}
.ticker-slide-link { display: block; width:100%; height:100%; text-decoration: none; color: var(--slate); position: relative; overflow: hidden; border-radius: 4px; background-color: var(--navy); }
.ticker-slide-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.ticker-slide-link:hover img { transform: scale(1.1); }
.ticker-slide-link .ticker-label { position: absolute; top: 5px; right: 5px; background-color: #c00; color: white; font-size: 0.7rem; padding: 2px 5px; border-radius: 3px; font-weight: bold; }
.ticker-slide-link span { position: absolute; bottom: 0; left: 0; width: 100%; text-align: left; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 20px 10px 5px; font-size: 0.9rem; font-weight: bold; color: var(--white); box-sizing: border-box; }

/* Promo Slider Card Specific Styles */
.promos-slider-container .promo-swiper-slide {
    width: calc((100vw - 120px) / 5);
    aspect-ratio: 5 / 2;
    height: auto;
}
/* ... (Rest of the promo card styles remain the same) ... */

/* ... (The rest of the CSS file remains the same) ... */
.promo-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    background-color: var(--navy);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promo-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}
.promo-card-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.promo-card-link:hover img {
    transform: scale(1.05);
}
.promo-card-link .promo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.75); /* UPDATED */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
}
.promo-card-link .promo-card-date {
    font-size: 0.75rem;
    color: var(--slate);
    margin-bottom: 0.25rem;
    font-weight: bold;
}
.promo-card-link .promo-card-character {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.2;
}
.promo-card-link .promo-card-title {
    font-size: 0.9rem;
    color: var(--light-blue);
}

/* --- Hero Section Styling --- */
.hero.video-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.video-background iframe,
.video-background video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.5); }
.hero.video-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}
.hero-content { position: relative; z-index: 3; padding: 2rem; }
.hero-content h1 { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 700; letter-spacing: -0.01em; font-size: 3rem; margin-bottom: 1rem; color: var(--white); text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
.hero-content p { font-size: 1.25rem; color: var(--slate); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btn { padding: 15px 30px; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; background-color: var(--gold); color: var(--dark-navy); font-weight: bold; border: none; cursor: pointer; transition: all 0.3s ease; }
.hero-btn:hover { background-color: var(--white); color: var(--dark-navy); }

/* --- Footer --- */
footer { text-align: center; padding: 2rem; margin-top: 2rem; background: var(--navy); border-top: 1px solid var(--gold); color: var(--slate); }

/* --- Content Sections --- */
.content-section { 
    margin-bottom: 3rem; 
    padding: 0 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.content-section h2 { color: var(--white); border-bottom: 2px solid var(--gold); padding-bottom: 10px; margin-bottom: 1.5rem; }

/* --- Champions Section --- */
.champions-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; 
}
.champion-card { display: block; position: relative; height: 350px; border-radius: 8px; overflow: hidden; background-size: cover; background-position: center 20%; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.champion-card:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.champion-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(15, 17, 21, 1) 10%, rgba(15, 17, 21, 0.7) 40%, transparent 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; box-sizing: border-box; }
.champion-card-belt { position: absolute; top: 10px; right: 10px; width: 60px; height: auto; opacity: 0.8; }
.champion-card-info { color: var(--white); text-align: left; }
.champion-card-info .champion-name { 
    font-family: 'Oswald', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    display: block; 
    line-height: 1.2; 
    background: var(--white);
    color: var(--white);
    background-clip: text;
    -webkit-background-clip: text;
    transition: color 0.3s ease;
}
.champion-card-info .title-name { 
    font-size: 0.9rem; 
    color: var(--slate); 
    display: block; 
    background: var(--slate);
    color: var(--slate);
    background-clip: text;
    -webkit-background-clip: text;
    transition: color 0.3s ease;
}
.champion-card:hover .champion-name,
.champion-card:hover .title-name {
    background: linear-gradient(to right, var(--light-slate) 20%, var(--gold) 40%, var(--light-slate) 60%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: sheen 1.5s linear infinite;
}
.champion-card-info .reign-days { font-size: 0.8rem; font-weight: bold; color: var(--gold); background-color: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; display: inline-block; margin-top: 8px; }

/* --- Champions V2: Split Card --- */
.champions-section { margin-top: 1.5rem; margin-bottom: 3rem; }
/* Tighten the gap between the gold-underlined heading and the cards. */
.champions-section .content-section { margin-bottom: 0; }
.champions-section .content-section h2 { margin-bottom: 0.75rem; }
.champions-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 2rem; /* full-bleed minus side padding, mirrors news ticker */
}
@media (max-width: 1100px) {
    .champions-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
.champ-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 5 / 2;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #2a2a2a;
    transition: border-color 0.3s, transform 0.3s;
}
.champ-split-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.champ-split-portrait {
    position: relative;
    background-size: cover;
    background-position: center 15%;
    transition: transform 0.3s;
}
.champ-split-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.champ-split-days-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    white-space: nowrap;
    line-height: 1;
}
.champ-split-days-badge strong {
    font-size: 0.95rem;
    font-weight: 700;
}
.champ-split-card:hover .champ-split-portrait {
    transform: scale(1.05);
}
.champ-split-info {
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    text-align: center;
    gap: 6px;
}
.champ-split-belt {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.3));
    margin-bottom: 6px;
}
.champ-split-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}
.champ-split-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}
.champ-split-reign {
    margin-top: 6px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.champ-split-reign-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}
.champ-split-reign-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .champions-grid-v2 { grid-template-columns: 1fr; }
    .champ-split-card { height: 220px; }
}

/* --- Roster Page Styling --- */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.roster-card {
    background-color: var(--navy);
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.roster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.roster-card-image {
    height: 250px;
    background-size: cover;
    background-position: center 20%;
}
.roster-card-image-duo {
    display: flex;
    height: 250px;
}
.duo-image {
    flex: 1;
    background-size: cover;
    background-position: center 20%;
}
.roster-card-name {
    padding: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-slate);
    text-align: center;
    background: var(--light-slate);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.roster-card:hover .roster-card-name {
    background: linear-gradient(to right, var(--light-slate) 20%, var(--gold) 40%, var(--light-slate) 60%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sheen 1.5s linear infinite;
}
.roster-detail-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .roster-detail-header {
        flex-direction: row;
    }
}
.roster-detail-left {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
}
.roster-detail-right {
    flex-grow: 1;
}
.roster-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.roster-info-box {
    background-color: var(--navy);
    padding: 0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--navy);
}
.roster-info-box h2 {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    /* Iterating: match nav styling — Oswald 400, uppercase, 1.5px tracked. */
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.5rem;
    color: #f5f5f5;
}
.vitals-box h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.5rem;
}
.vitals-box {
    padding: 1.5rem;
}
.vitals-box h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}
.vitals-box p {
    margin: 0.5rem 0;
    padding: 0;
}
.video-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* GrapesJS show-page palette emits an inline-styled aspect-ratio wrapper
   (padding-bottom:56.25%;height:0) around YouTube embeds without position:
   relative on the wrapper or position:absolute on the iframe — so the iframe
   collapses to 0×0. Restore the missing positions here. */
div[style*="padding-bottom:56.25%"] {
    position: relative;
}
div[style*="padding-bottom:56.25%"] > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.moveset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.move-item {
    background-color: var(--dark-navy);
    padding: 1rem;
    border-radius: 4px;
}
.move-item strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}
.move-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--slate);
}
.other-moves {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
}
.other-moves h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0;
}
details.roster-info-box {
    border: 1px solid var(--navy);
    transition: background-color 0.2s ease;
}
details.roster-info-box:hover {
    border-color: #4a5568;
}
details summary {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}
details summary::-webkit-details-marker {
    display: none;
}
details .details-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #4a5568;
}
details summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 2rem;
    line-height: 1;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease;
}
details[open] > summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}
.promo-card {
    position: relative;
    height: 200px;
    width: 200px;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    margin: 0 auto;
}
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.promo-card:hover img {
    transform: scale(1.1);
}
.promo-card .promo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.promo-card-title {
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--light-slate);
    transition: color 0.3s ease;
}
.promo-card-date {
    font-size: 0.75rem;
    color: var(--slate);
    margin-bottom: 0.25rem;
    font-weight: bold;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--slate);
    transition: color 0.3s ease;
}
.promo-card:hover .promo-card-title,
.promo-card:hover .promo-card-date {
    background: linear-gradient(to right, var(--light-slate) 20%, var(--gold) 40%, var(--light-slate) 60%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sheen 1.5s linear infinite;
}

/* --- Title History Page Styling --- */
.history-container {
    max-width: 1000px;
    margin: 0 auto;
}
.stats-box {
    background-color: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 1rem;
}
.stats-box div { 
    font-size: 1.1rem; 
    color: var(--light-slate);
    white-space: nowrap;
}
.title-header { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin-bottom: 2rem; text-align: center; }
.title-history-belt-img { max-height: 120px; width: auto; }
.history-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background-color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    font-size: 0.875rem;
}
.history-table th, .history-table td {
    padding: 10px 14px;
    text-align: left;
    vertical-align: middle;
}
.history-table thead {
    background-color: var(--surface-2);
}
.history-table th {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
}
.history-table td {
    border-top: 1px solid var(--border);
    color: var(--slate);
}
.history-table tbody tr:first-child td {
    border-top: 0;
}
.history-table td strong {
    color: var(--light-slate);
    font-weight: 600;
}
.history-table td a {
    color: var(--gold);
    font-weight: 600;
}
.history-table td a:hover {
    color: var(--gold-bright);
}
.history-table tbody tr {
    transition: background-color 0.15s ease;
}
.history-table tbody tr:hover {
    background-color: var(--surface-2);
}
.history-table th:nth-child(1), .history-table td:nth-child(1) { width: 30%; }
.history-table th:nth-child(2), .history-table td:nth-child(2),
.history-table th:nth-child(3), .history-table td:nth-child(3) { width: 25%; }
.history-table th:nth-child(4), .history-table td:nth-child(4) { width: 20%; text-align: center; }
.history-table tr.has-tooltip { position: relative; cursor: help; }
.history-table tr.has-tooltip:hover::after { content: attr(data-note); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); padding: 10px 15px; border-radius: 4px; background-color: var(--navy); color: var(--light-slate); font-size: 0.9rem; white-space: normal; width: 300px; max-width: 90vw; z-index: 10; text-align: left; border: 1px solid var(--gold); box-shadow: 0 4px 15px rgba(0,0,0,0.3); visibility: visible; opacity: 1; transition: opacity 0.2s ease; }
.history-table tr.has-tooltip::after { content: ''; visibility: hidden; opacity: 0; }

/* --- Media Card Grid (News + Promo archive) --- */
.media-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.media-card {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.media-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.media-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}
.media-card:hover .media-card-image {
    transform: scale(1.04);
}
.media-card-image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a22 0%, #050608 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    z-index: 1;
}
.media-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.94) 100%);
    z-index: 2;
    pointer-events: none;
}
.media-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 3;
    color: var(--light-slate);
}
.media-card-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.media-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--light-slate);
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 700;
}
.media-card-meta {
    font-size: 0.78rem;
    color: var(--slate);
    line-height: 1.4;
}
.media-card-character {
    color: var(--gold);
    font-weight: 600;
}

/* --- Event Calendar Styling --- */
.on-break-message { text-align: center; background-color: var(--navy); padding: 3rem; border-radius: 8px; border: 1px solid var(--gold); }
.view-toggle { text-align: center; margin-bottom: 2rem; }
.view-toggle button { background-color: var(--navy); color: var(--slate); border: 1px solid var(--light-blue); padding: 10px 20px; cursor: pointer; font-size: 1rem; font-weight: bold; transition: all 0.2s ease; }
.view-toggle button.active { background-color: var(--gold); color: var(--dark-navy); border-color: var(--gold); }
.view-toggle button:first-of-type { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
.view-toggle button:last-of-type { border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-left: none; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.calendar-header h2 { border-bottom: none; margin: 0; }
.calendar-table { width: 100%; table-layout: fixed; border-collapse: collapse; }
.calendar-table th { text-align: center; padding: 0.5rem; background-color: var(--navy); color: var(--gold); }
.calendar-table td {
    height: 100px;
    vertical-align: top;
    border: 1px solid #2a3f62;
    padding: 5px;
}
.calendar-table .day-number { font-weight: bold; color: var(--light-slate); }
.calendar-event { font-size: 0.8rem; padding: 3px 5px; border-radius: 3px; margin-top: 5px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: var(--white); }
.event-type-ppv { background-color: var(--gold); color: var(--dark-navy); }
.event-type-zenith { background-color: var(--light-blue); color: var(--dark-navy); }
.event-type-other { background-color: #4a5568; }
.event-type-community {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-weight: 600;
}
.event-type-badge { font-size: 0.8rem; padding: 4px 8px; border-radius: 12px; font-weight: bold; color: var(--dark-navy); }
.event-type-badge.event-type-community { color: var(--gold); }

/* --- Fade-in on Scroll Animation --- */
.fade-in-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* --- Keyframes for Sheen Animation --- */
@keyframes sheen {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .header-logo, .header-countdown { display: none; }
    .main-nav { flex: 1; }
    .roster-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .champions-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-box { flex-wrap: wrap; } 
    .roster-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .roster-detail-header { flex-direction: column; align-items: center; }
    .roster-detail-left { max-width: 100%; }
    .history-table, .history-table thead, .history-table tbody, .history-table th, .history-table td, .history-table tr { display: block; }
    .history-table thead tr { position: absolute; top: -9999px; left: -9999px; }
    .history-table tr { border: 1px solid #2a3f62; margin-bottom: 1rem; }
    .history-table td { border: none; border-bottom: 1px solid #1d2d50; position: relative; padding-left: 50%; text-align: right; }
    .history-table td:before { position: absolute; top: 12px; left: 15px; width: 45%; padding-right: 10px; white-space: nowrap; text-align: left; font-weight: bold; color: var(--light-slate); }
    .history-table td:nth-of-type(1):before { content: "Champion"; }
    .history-table td:nth-of-type(2):before { content: "Date Won"; }
    .history-table td:nth-of-type(3):before { content: "Date Lost"; }
    .history-table td:nth-of-type(4):before { content: "Days Held"; }
}
@media (max-width: 600px) {
    .roster-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .champions-grid { grid-template-columns: 1fr; }
}

/* --- User Auth Page Styling (base in theme.css) --- */
.auth-container {
    max-width: 500px;
    margin: 4rem auto;
}
.error-messages p { margin: 0.25rem 0; }

/* ... (All previous CSS is the same until the end) ... */

/* --- Application Form Specific Styling --- */
.application-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .application-form .form-group {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .application-form .form-group label {
        flex-basis: 200px; /* Set a fixed base width for all labels */
        flex-shrink: 0;
        text-align: right;
        margin-bottom: 0;
    }

    .application-form .form-group.align-top {
        align-items: flex-start;
    }

    .application-form .form-group.align-top label {
        padding-top: 12px; /* Align label with the top of the textarea */
    }
}
/* --- Rankings Page Styling --- */
.rankings-section {
    margin-bottom: 3rem;
}
.rankings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--navy);
}
.rankings-table th, .rankings-table td {
    padding: 1rem;
    border-bottom: 1px solid #282828;
    text-align: left;
    vertical-align: middle;
}
.rankings-table thead {
    background-color: var(--dark-navy);
}
.rankings-table th {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.rankings-table .rank-col {
    width: 100px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.rankings-table .record-col {
    width: 200px;
    font-weight: bold;
    text-align: center;
}
.rankings-table .name-col a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-slate);
    font-weight: bold;
    font-size: 1.1rem;
}
.rankings-table .name-col a:hover {
    color: var(--gold);
}
.rankings-table .name-col img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--border);
}
.rankings-table .tag-team-images {
    display: flex;
    margin-right: 1rem;
}
.rankings-table .tag-team-images img {
    width: 40px;
    height: 40px;
    margin-right: -15px; /* Overlap images */
}

/* ... (All previous CSS is the same until the Rankings Page Styling section) ... */

/* --- Rankings Page Styling --- */
.rankings-section {
    margin-bottom: 3rem;
}
.rankings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--navy);
}
.rankings-table th, .rankings-table td {
    padding: 1rem;
    border-bottom: 1px solid #282828;
    text-align: left;
    vertical-align: middle;
}
.rankings-table thead {
    background-color: var(--dark-navy);
}
.rankings-table th {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.rankings-table .rank-col {
    width: 100px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.rankings-table .record-col {
    width: 200px;
    font-weight: bold;
    text-align: center;
}
.rankings-table .name-col a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-slate);
    font-weight: bold;
    font-size: 1.1rem;
}
.rankings-table .name-col a:hover {
    color: var(--gold);
}
.rankings-table .name-col img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--border);
}
.rankings-table .tag-team-images {
    display: flex;
    margin-right: 1rem;
}
.rankings-table .tag-team-images img {
    width: 40px;
    height: 40px;
    margin-right: -15px; /* Overlap images */
}

/* --- Data Table Styling (for Finances) --- */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--navy);
    color: var(--slate);
    font-size: 0.9rem;
}
.data-table th, .data-table td {
    padding: 12px 15px;
    border: 1px solid #2a3f62;
    text-align: left;
}
.data-table thead {
    background-color: var(--dark-navy);
}
.data-table th {
    font-weight: bold;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.data-table tbody tr:hover {
    background-color: #2a3f62;
}

/* --- Archive Page Styling --- */
.archive-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.archive-item {
    display: block;
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    border-left: 4px solid var(--navy);
    transition: all 0.2s ease;
}
.archive-item:hover {
    border-left-color: var(--gold);
    background-color: #2a3f62;
}
.archive-item-title {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-slate);
    margin-bottom: 0.25rem;
}
.archive-item-meta {
    font-size: 0.9rem;
    color: var(--slate);
}

/* ... (All previous CSS is the same until the Archive Page Styling section) ... */

/* --- Archive Page Styling --- */
.archive-section {
    margin-bottom: 3rem;
}
.archive-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.archive-item {
    display: block;
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    border-left: 4px solid var(--navy);
    transition: all 0.2s ease;
}
.archive-item:hover {
    border-left-color: var(--gold);
    background-color: #2a3f62;
}
.archive-item-title {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-slate);
}

/* --- Archive Grid Styling --- */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.archive-grid-item {
    background-color: var(--navy);
    color: var(--light-slate);
    border: 1px solid #4a5568;
    padding: 2rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.archive-grid-item:hover {
    background-color: var(--gold);
    color: var(--dark-navy);
    border-color: var(--gold);
}
.archive-hidden-list {
    margin-top: 2rem;
}

/* --- Page Builder Public Styles --- */
.page-columns {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}
@media (min-width: 768px) {
    .page-columns.columns-2 { grid-template-columns: 1fr 1fr; }
    .page-columns.columns-3 { grid-template-columns: 1fr 1fr 1fr; }
}
/* ... (rest of the public column styles are the same) */

/* --- Block Alignment --- */
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

/* --- Titles Grid --- */
.titles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.title-card {
    background-color: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #2a3f62;
    display: flex;
    flex-direction: column;
}

.title-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--gold);
}

.title-image-container {
    background-color: var(--dark-navy);
    padding: 2rem;
    height: 250px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.title-card h2 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    padding: 1.5rem;
    border-top: 1px solid #2a3f62;
}

.title-card:hover h2 {
    color: var(--gold);
}

.no-image {
    color: var(--slate);
    font-style: italic;
}
/* --- DataTables Dark Theme Override --- */
.dataTables_wrapper { color: var(--slate); }
.dataTables_length select, .dataTables_filter input {
    background-color: var(--dark-navy);
    color: var(--light-slate);
    border: 1px solid #4a5568;
    padding: 5px;
}
.dataTables_paginate .paginate_button {
    color: var(--slate) !important;
    border: 1px solid #2a3f62;
}
.dataTables_paginate .paginate_button.current,
.dataTables_paginate .paginate_button:hover {
    background: var(--gold) !important;
    color: var(--dark-navy) !important;
    border-color: var(--gold) !important;
}
.dataTables_info, .dataTables_length, .dataTables_filter {
    margin-bottom: 1rem;
}

/* --- Hall of Fame --- */
.hof-header {
    text-align: center;
    margin-bottom: 3rem;
}
.hof-intro {
    color: var(--slate);
    font-size: 1.1rem;
    margin-top: -0.5rem;
}
.hof-class {
    margin-bottom: 3rem;
}
.hof-year-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.hof-year-banner::before,
.hof-year-banner::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.hof-year-banner::after {
    background: linear-gradient(to left, transparent, var(--gold));
}
.hof-year-label {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    text-transform: uppercase;
}
.hof-inductees {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.hof-card {
    background: var(--navy);
    border: 1px solid #2a3f62;
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1 1 200px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.hof-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.hof-card-icon {
    margin-bottom: 0.75rem;
}
.hof-card-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.hof-trophy {
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}
.hof-name {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.hof-bio {
    color: var(--slate);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Title History Polish --- */
.back-link {
    display: inline-block;
    color: var(--slate);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}
.back-link:hover { color: var(--gold); }
.title-history-belt-img { max-height: 200px; width: auto; }
.stat-card {
    flex: 1 1 160px;
    background: var(--dark-navy);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    text-align: center;
}
.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.stat-value {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}
.stat-number { font-size: 2rem; }
.stat-sub { color: var(--slate); font-size: 0.8rem; margin-top: 0.25rem; }
.history-table tbody tr.current-reign { border-left: 3px solid var(--gold); }
.current-badge {
    background: var(--gold);
    color: var(--dark-navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.title-card-champ {
    color: var(--gold);
    font-size: 0.85rem;
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-style: italic;
}

/* --- Article Detail Header --- */
.article-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.article-header h1 { margin: 0; }
.article-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .article-header { flex-direction: column; text-align: center; }
}

/* --- Mobile Hamburger Nav --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Back to Top */
.back-to-top {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    color: var(--slate);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}
.back-to-top:hover { color: var(--gold); }

@media (max-width: 1200px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-navy);
        border-top: 1px solid var(--gold);
        z-index: 100;
    }
    .main-nav.nav-open { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav ul li { display: block; }
    .main-nav ul li a {
        height: auto !important;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }
    .main-nav ul li + li::before { display: none; }
    .main-nav ul li a::after { display: none; }
    .dropdown-content {
        position: static !important;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
    }
    .dropdown:hover .dropdown-content,
    .dropdown.open .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        padding-left: 40px !important;
    }
}

/* Titles grid responsive */
@media (max-width: 768px) {
    .titles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .titles-grid { grid-template-columns: 1fr; }
}

/* --- Show Archive Polish --- */
.archive-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.archive-section-header h2 { margin: 0; }
.show-type-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 3px;
}
.badge-ppv { background: var(--gold); color: var(--dark-navy); }
.badge-tv { background: #3a86ff; color: #fff; }
.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.archive-item-meta {
    font-size: 0.85rem;
    color: var(--slate);
    white-space: nowrap;
}
.archive-empty {
    color: var(--slate);
    font-style: italic;
    padding: 1rem 0;
}
.archive-grid-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.archive-grid-name {
    font-size: 1.1rem;
}
.archive-grid-meta {
    font-size: 0.75rem;
    color: var(--slate);
    font-weight: 400;
    text-transform: none;
}
.archive-grid-item:hover .archive-grid-meta { color: var(--dark-navy); }

/* --- Slim row list used on the Show Archive page --- */
.shows-slim-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    border: 1px solid #1f2f4d;
    border-radius: 4px;
    overflow: hidden;
}
.shows-slim-list li + li {
    border-top: 1px solid #1f2f4d;
}
.shows-slim-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 1rem;
    background-color: var(--navy);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.12s ease;
}
.shows-slim-row:hover {
    background-color: #2a3f62;
    border-left-color: var(--gold);
}
.shows-slim-title {
    color: var(--light-slate);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shows-slim-meta {
    color: var(--slate);
    font-size: 0.8rem;
    white-space: nowrap;
}
.shows-slim-arrow {
    color: var(--slate);
    font-size: 1.1rem;
    transition: transform 0.18s ease;
}
.shows-slim-arrow-open {
    transform: rotate(90deg);
    color: var(--gold);
}
/* <button> variant of .shows-slim-row needs default button styles stripped */
.shows-slim-row-button {
    width: 100%;
    background: var(--navy);
    border: none;
    border-left: 3px solid transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.shows-slim-li-open > .shows-slim-row {
    background-color: #2a3f62;
    border-left-color: var(--gold);
}
.shows-slim-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.6rem 1rem 0.85rem;
    background: rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--gold);
}
.shows-slim-tab {
    padding: 0.4rem 0.9rem;
    background: var(--dark-navy);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: "Oswald", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.15s ease;
}
.shows-slim-tab:hover {
    background: var(--gold);
    color: var(--dark-navy);
}
.shows-slim-empty {
    color: var(--slate);
    font-style: italic;
    padding: 0.85rem 1rem;
    background-color: var(--navy);
}

/* ============================================
   Roster grid v2 — extracted from legacy
   /roster/singles inline <style>. Used by the
   public roster index pages.
   ============================================ */
.roster-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    padding: 0;
}
.roster-card-v2 {
    background: #1a1a2e;
    border: 1px solid #2a2a3e;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.roster-card-v2:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
}
.roster-card-v2 .card-image {
    width: 100%;
    aspect-ratio: 3/4;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #111;
    position: relative;
}
.roster-card-v2 .card-image-duo {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    background-color: #111;
    position: relative;
}
.roster-card-v2 .card-image-duo .duo-half {
    flex: 1;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.roster-card-v2 .tier-ribbon {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}
.tier-ribbon.main_event { background: rgba(212,175,55,0.85); color: #111; }
.tier-ribbon.upper_mid { background: rgba(192,192,192,0.85); color: #111; }
.tier-ribbon.midcard { background: rgba(205,127,50,0.85); color: #111; }
.tier-ribbon.lower { background: rgba(100,100,100,0.85); color: #eee; }
.tier-ribbon.enhancement { background: rgba(60,60,60,0.85); color: #aaa; }
.roster-card-v2 .card-bottom {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.roster-card-v2 .card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    color: #eee;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 8px;
}
.roster-card-v2 .ov-bar-wrap {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.roster-card-v2 .ov-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s;
}
.roster-card-v2 .ov-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.roster-card-v2 .ov-score { font-weight: bold; }
.momentum-hot { color: #ff4444; }
.momentum-rising { color: #ff8c00; }
.momentum-neutral { color: #666; }
.momentum-cooling { color: #5b9bd5; }
.momentum-cold { color: #4488ff; }

/* ============================================
   Public finances page — extracted from legacy
   finances.php inline <style>.
   ============================================ */
.fin-public { max-width: 1100px; margin: 0 auto; }
.pub-tabs { display: flex; gap: 0; border-bottom: 2px solid #333; margin-bottom: 25px; }
.pub-tabs a { padding: 10px 20px; text-decoration: none; font-size: 0.85rem; font-weight: bold; color: #888; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.pub-tabs a:hover { color: #ccc; }
.pub-tabs a.active { color: #D4AF37; border-bottom-color: #D4AF37; }
.pub-tab { display: none; }
.pub-tab.active { display: block; }

.fin-summary { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 25px; }
.fin-card { background: rgba(0,0,0,0.3); border: 1px solid #333; border-radius: 6px; padding: 15px; text-align: center; }
.fin-card .fc-label { font-size: 0.7rem; text-transform: uppercase; color: #888; letter-spacing: 0.5px; }
.fin-card .fc-value { font-size: 1.5rem; font-weight: bold; color: #D4AF37; margin: 5px 0 3px; font-family: 'Oswald', sans-serif; }
.fin-card .fc-sub { font-size: 0.75rem; color: #666; }
.fc-green { color: #5cb85c !important; }
.fc-red { color: #dc3545 !important; }

.chart-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 25px; }
.chart-box { background: rgba(0,0,0,0.3); border: 1px solid #333; border-radius: 6px; padding: 16px; }
.chart-box h3 { color: #D4AF37; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 12px; font-family: 'Oswald', sans-serif; }
.chart-box canvas { width: 100% !important; height: 220px !important; }

.records-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-bottom: 30px; }
.record-card { background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.2); border-radius: 6px; padding: 15px; text-align: center; }
.record-card .rc-label { font-size: 0.7rem; text-transform: uppercase; color: #D4AF37; letter-spacing: 0.5px; font-family: 'Oswald', sans-serif; }
.record-card .rc-value { font-size: 1.5rem; font-weight: bold; color: #fff; margin: 6px 0 3px; font-family: 'Oswald', sans-serif; }
.record-card .rc-show { font-size: 0.75rem; color: #888; }

.year-section h3 { color: #D4AF37; font-family: 'Oswald', sans-serif; margin: 0 0 12px; font-size: 1.2rem; }
.year-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.year-stat { text-align: center; }
.year-stat .ys-label { font-size: 0.65rem; text-transform: uppercase; color: #888; }
.year-stat .ys-value { font-size: 1.1rem; font-weight: bold; color: #eee; font-family: 'Oswald', sans-serif; }

.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 30px; }
.merch-card { background: rgba(0,0,0,0.3); border-radius: 6px; padding: 14px; text-align: center; transition: border-color 0.2s; text-decoration: none; color: inherit; display: block; }
.merch-card.top3 { border: 1px solid rgba(212,175,55,0.4); }
.merch-card.normal { border: 1px solid #333; }
.merch-card:hover { border-color: #D4AF37; }
.merch-rank { font-size: 0.7rem; text-transform: uppercase; margin-bottom: 6px; }
.merch-rank.gold { color: #D4AF37; }
.merch-rank.silver { color: #888; }
.merch-avatar { width: 60px; height: 60px; border-radius: 50%; background-size: cover; background-position: center; margin: 0 auto 8px; }
.merch-name { font-weight: bold; color: #eee; font-size: 0.85rem; font-family: 'Oswald', sans-serif; text-transform: uppercase; margin-bottom: 4px; }
.merch-units { font-size: 1.1rem; font-weight: bold; color: #5cb85c; font-family: 'Oswald', sans-serif; }
.merch-rev { font-size: 0.75rem; color: #888; }

.section-head { color: #D4AF37; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-family: 'Oswald', sans-serif; margin: 25px 0 12px; padding-bottom: 5px; border-bottom: 1px solid #333; }

.fin-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.fin-table th { text-align: left; padding: 8px 10px; border-bottom: 2px solid #D4AF37; color: #D4AF37; font-size: 0.7rem; text-transform: uppercase; font-family: 'Oswald', sans-serif; }
.fin-table td { padding: 8px 10px; border-bottom: 1px solid #222; font-size: 0.85rem; }
.fin-table tr:hover { background: rgba(212,175,55,0.03); }
.fin-table .ev-name { font-weight: bold; color: #eee; }
.fin-table .ev-date { color: #666; font-size: 0.75rem; }
.fin-table .money { font-family: monospace; }
.fin-table .positive { color: #5cb85c; }
.fin-table .negative { color: #dc3545; }
.rating-badge { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 0.75rem; font-weight: bold; }
.rating-hot { background: rgba(220,53,69,0.15); color: #ff4444; }
.rating-good { background: rgba(212,175,55,0.15); color: #D4AF37; }
.rating-mid { background: rgba(91,155,213,0.15); color: #5b9bd5; }
.rating-low { background: rgba(108,117,125,0.15); color: #999; }

@media (max-width: 768px) {
    .chart-row { grid-template-columns: 1fr; }
    .fin-summary { grid-template-columns: repeat(2, 1fr); }
    .pub-tabs { flex-wrap: wrap; }
    .pub-tabs a { padding: 8px 14px; font-size: 0.75rem; }
}

/* ============================================
   Network (Reality Check TV) — extracted from
   network.php inline <style>.
   ============================================ */
.network-page { max-width: 1100px; margin: 0 auto; }
.net-hero { text-align: center; padding: 50px 20px 30px; position: relative; }
.net-hero h1 { font-family: 'Oswald', sans-serif; font-size: 2.5em; color: #fff; margin-bottom: 5px; }
.net-hero .net-sub { color: #D4AF37; font-family: 'Oswald', sans-serif; font-size: 1.1em; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.net-hero p { color: #888; font-size: 0.9em; }

.schedule-section { margin: 30px 0; }
.schedule-title { font-family: 'Oswald', sans-serif; font-size: 1.3em; color: #D4AF37; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 1px solid #333; }

.tv-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid #333; border-radius: 8px; overflow: hidden; }
.tv-row { display: grid; grid-template-columns: 120px 1fr 150px 100px; align-items: center; padding: 0; border-bottom: 1px solid #222; }
.tv-row:last-child { border-bottom: none; }
.tv-row:hover { background: rgba(212,175,55,0.03); }
.tv-row.today { background: rgba(212,175,55,0.08); }
.tv-day { padding: 18px 15px; font-family: 'Oswald', sans-serif; font-size: 0.9em; text-transform: uppercase; color: #888; background: rgba(0,0,0,0.3); text-align: center; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.tv-row.today .tv-day { color: #D4AF37; }
.tv-show { padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.tv-show-color { width: 4px; height: 35px; border-radius: 2px; flex-shrink: 0; }
.tv-show-info h4 { font-family: 'Oswald', sans-serif; font-size: 1em; color: #fff; margin: 0 0 2px; }
.tv-show-info .tv-brand { font-size: 0.75em; color: #888; }
.tv-show-info .tv-brand-tag { display: inline-block; padding: 1px 6px; border-radius: 3px; font-size: 0.7em; font-weight: bold; }
.tv-time { padding: 18px 15px; font-family: 'Oswald', sans-serif; font-size: 0.95em; color: #ccc; text-align: center; }
.tv-status { padding: 18px 15px; text-align: center; font-size: 0.8em; }
.status-weekly { color: #5cb85c; }
.status-biweekly { color: #D4AF37; }
.status-special { color: #ff8c00; }

.color-shoot { background: #D4AF37; }
.color-reign { background: #DC143C; }
.color-resistance { background: #00BFFF; }
.color-neo { background: #9333EA; }
.color-ppv { background: #ff8c00; }
.tag-shoot { background: rgba(212,175,55,0.2); color: #D4AF37; }
.tag-reign { background: rgba(220,20,60,0.2); color: #DC143C; }
.tag-resistance { background: rgba(0,191,255,0.2); color: #00BFFF; }
.tag-neo { background: rgba(147,51,234,0.2); color: #9333EA; }
.tag-ppv { background: rgba(255,140,0,0.2); color: #ff8c00; }

.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; margin-top: 15px; }
.upcoming-card { background: #141414; border: 1px solid #2a2a2a; border-radius: 8px; padding: 18px; transition: border-color 0.2s, transform 0.2s; }
.upcoming-card:hover { transform: translateY(-2px); }
.upcoming-card.ppv-card { border-left: 4px solid #ff8c00; background: linear-gradient(135deg, #1a1510, #141414); }
.upcoming-card.zenith-card { border-left: 4px solid #D4AF37; }
.upcoming-card .uc-date { font-family: 'Oswald', sans-serif; font-size: 0.75em; text-transform: uppercase; color: #888; letter-spacing: 0.5px; margin-bottom: 5px; }
.upcoming-card .uc-name { font-family: 'Oswald', sans-serif; font-size: 1.2em; color: #fff; margin-bottom: 4px; }
.upcoming-card .uc-type { font-size: 0.75em; }
.upcoming-card .uc-countdown { font-size: 0.8em; color: #666; margin-top: 8px; }

.next-up { background: linear-gradient(135deg, #1a1a1a, #111); border: 1px solid #333; border-radius: 10px; padding: 25px 30px; display: flex; align-items: center; gap: 25px; margin-bottom: 30px; }
.next-up .nu-badge { background: #D4AF37; color: #111; padding: 8px 16px; border-radius: 4px; font-family: 'Oswald', sans-serif; font-size: 0.85em; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.next-up .nu-info h3 { font-family: 'Oswald', sans-serif; font-size: 1.4em; color: #fff; margin: 0 0 3px; }
.next-up .nu-info p { color: #888; font-size: 0.85em; margin: 0; }
.next-up .nu-countdown { margin-left: auto; text-align: center; }
.next-up .nu-countdown .days { font-family: 'Oswald', sans-serif; font-size: 2em; font-weight: 700; color: #D4AF37; line-height: 1; }
.next-up .nu-countdown .days-label { font-size: 0.7em; color: #888; text-transform: uppercase; }

.net-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 30px 0; }
.net-info-card { background: #141414; border: 1px solid #2a2a2a; border-radius: 8px; padding: 20px; text-align: center; }
.net-info-card h4 { font-family: 'Oswald', sans-serif; color: #D4AF37; font-size: 0.85em; text-transform: uppercase; margin-bottom: 8px; }
.net-info-card p { color: #888; font-size: 0.85em; margin: 0; }

.spitter-feed-list { display: flex; flex-direction: column; gap: 10px; }
.spitter-post { background: #141414; border: 1px solid #2a2a2a; border-left: 3px solid #D4AF37; border-radius: 4px; padding: 8px 12px; }
.spitter-post .post-message { color: #e0e0e0; font-size: 0.85em; line-height: 1.4; margin-bottom: 3px; word-break: break-word; }
.spitter-post .post-time { font-size: 0.7em; color: #555; }
.spitter-empty { text-align: center; color: #555; padding: 30px; font-style: italic; }

.tv-show-link { color: inherit; text-decoration: none; }
.tv-show-link:hover { color: #D4AF37; }
.tv-event-link { color: #D4AF37; font-size: 0.8em; font-family: 'Oswald', sans-serif; text-decoration: none; letter-spacing: 0.5px; }
.tv-event-link:hover { text-decoration: underline; }

.otd-section { margin: 30px 0; }
.otd-list { display: flex; flex-direction: column; gap: 12px; }
.otd-card { background: #141414; border: 1px solid #2a2a2a; border-left: 3px solid #D4AF37; border-radius: 4px; padding: 15px 18px; }
.otd-card .otd-year { font-family: 'Oswald', sans-serif; font-size: 1.8em; font-weight: 700; color: #D4AF37; line-height: 1; margin-bottom: 4px; }
.otd-card .otd-show-name { font-family: 'Oswald', sans-serif; font-size: 1.1em; color: #fff; margin-bottom: 2px; }
.otd-card .otd-venue { font-size: 0.8em; color: #666; margin-bottom: 6px; }
.otd-card .otd-title-change { display: inline-block; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25); border-radius: 4px; padding: 4px 10px; margin-top: 4px; margin-right: 6px; font-size: 0.8em; color: #D4AF37; }
.otd-card .otd-title-change .otd-champ { color: #fff; font-weight: bold; }

@media (max-width: 768px) {
    .tv-row { grid-template-columns: 80px 1fr 100px; }
    .tv-status { display: none; }
    .next-up { flex-direction: column; text-align: center; }
    .next-up .nu-countdown { margin-left: 0; }
    .net-info { grid-template-columns: 1fr; }
    .upcoming-grid { grid-template-columns: 1fr; }
}

/* ===== Reality Check TV pip widget (ported from legacy pip-widget.php inline styles) ===== */
.scn-pip {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 290px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}
.scn-pip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-bottom: 1px solid #2a2a2a;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    user-select: none;
}
.scn-pip-header:hover { background: linear-gradient(135deg, #222, #161616); }
.pip-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8em;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pip-live {
    display: inline-block;
    width: 7px; height: 7px;
    background: #dc3545;
    border-radius: 50%;
    margin-right: 6px;
    animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.scn-pip-toggle {
    background: none;
    border: 1px solid #333;
    color: #888;
    width: 22px; height: 22px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.scn-pip-toggle:hover { border-color: #D4AF37; color: #D4AF37; }
.scn-pip-body { padding: 12px 14px; }
.scn-pip-video {
    position: relative;
    margin: -12px -14px 12px;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid #2a2a2a;
}
.scn-pip-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}
.scn-pip-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45) 100%);
    transition: background 0.2s ease;
}
.scn-pip-video-overlay:hover {
    background: linear-gradient(180deg, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0.55) 100%);
    box-shadow: inset 0 0 0 2px rgba(212,175,55,0.6);
}
.scn-pip.minimized .scn-pip-body { display: none; }
.scn-pip.minimized { border-radius: 10px; }
.scn-pip.minimized .scn-pip-header { border-bottom: none; border-radius: 10px; }
.scn-pip-next {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e1e1e;
}
.pip-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.pip-event-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1em;
    color: #fff;
    margin-bottom: 2px;
}
.pip-event-meta { font-size: 0.75em; color: #666; margin-bottom: 6px; }
.pip-event-link {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7em;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 2px 8px;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.pip-event-link:hover { background: rgba(212,175,55,0.1); }
.scn-pip-feed-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.scn-pip-posts { display: flex; flex-direction: column; gap: 6px; }
.scn-pip-post {
    background: #141414;
    border-left: 2px solid #D4AF37;
    border-radius: 0 4px 4px 0;
    padding: 5px 8px;
}
.scn-pip-post .pip-msg { font-size: 0.78em; color: #ddd; line-height: 1.4; }
.scn-pip-post .pip-handle { color: #D4AF37; }
.scn-pip-post .pip-time { font-size: 0.65em; color: #444; margin-top: 2px; }
.scn-pip-empty { font-size: 0.78em; color: #555; font-style: italic; }
.scn-pip-footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #1e1e1e;
    text-align: center;
}
.scn-pip-footer a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7em;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.scn-pip-footer a:hover { color: #D4AF37; }
.scn-pip-reopen {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.5);
    color: #D4AF37;
    font-family: 'Oswald', sans-serif;
    font-size: 0.72em;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.scn-pip-reopen:hover {
    border-color: #D4AF37;
    background: #161616;
}

/* ===== Match Playlist (roster profile YouTube list) ===== */
.match-playlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.match-playlist-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #2a2a2a;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.match-playlist-row:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}
.match-playlist-thumb {
    position: relative;
    flex: 0 0 auto;
    width: 120px;
    height: 68px;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    display: block;
}
.match-playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.match-playlist-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
    transition: color 0.15s ease, background 0.15s ease;
}
.match-playlist-row:hover .match-playlist-play {
    color: #D4AF37;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 100%);
}
.match-playlist-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.match-playlist-opponents {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.match-playlist-opponents:hover {
    color: #D4AF37;
}
.match-playlist-sub {
    font-size: 0.8rem;
    color: #888;
}
.match-playlist-event {
    color: #c9a227;
    text-decoration: none;
}
.match-playlist-event:hover {
    color: #D4AF37;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .match-playlist-thumb {
        width: 96px;
        height: 54px;
    }
    .match-playlist-opponents {
        font-size: 0.95rem;
    }
    .match-playlist-sub {
        font-size: 0.75rem;
    }
}
.match-playlist-more {
    display: block;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid #4a3f1e;
    border-radius: 4px;
    color: #D4AF37;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.match-playlist-more:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

/* --- Community Event landing-page hero ---
 * Cinematic banner block with title overlay + a calendar-style date stamp.
 * Falls back gracefully when no banner image is set.
 */
.ce-hero {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
}
.ce-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.ce-hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    min-height: 280px;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(
        to top,
        rgba(15, 17, 21, 0.95) 0%,
        rgba(15, 17, 21, 0.7) 40%,
        rgba(15, 17, 21, 0.2) 100%
    );
}
.ce-hero-text {
    flex: 1;
    min-width: 0;
}
.ce-hero-eyebrow {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.ce-hero-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.ce-hero-tagline {
    font-style: italic;
    color: var(--slate);
    margin: 0;
    font-size: 1.05rem;
    max-width: 600px;
}
.ce-hero-datestamp {
    flex-shrink: 0;
    background: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.ce-hero-month {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}
.ce-hero-day {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--light-slate);
    margin: 0.1rem 0;
}
.ce-hero-year {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--muted);
}
.ce-hero-multiday {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--slate);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
    .ce-hero-overlay { flex-direction: column; align-items: flex-start; }
    .ce-hero-title { font-size: 1.75rem; }
    .ce-hero-day { font-size: 2rem; }
}

.ce-status-strip {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--slate);
}
.ce-countdown {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 4px 10px;
    border-radius: 3px;
}
.ce-location {
    color: var(--slate);
}
.ce-fulldate {
    color: var(--muted);
    font-size: 0.85rem;
}

.ce-signup-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.ce-signup-count {
    font-size: 0.85rem;
    color: var(--muted);
}

/* --- Gold-accent eyebrow + section label utility ---
 * The "RECKONING DAY" / "SINGLES ROSTER" treatment from the admin mockup.
 * Use .section-eyebrow above an article title or content block, .section-label
 * above a table or list. Same visual, different semantic intent.
 */
.section-eyebrow,
.section-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    color: var(--gold);
    margin: 0 0 0.5rem;
    display: block;
}
.section-label {
    margin-top: 1.5rem;
}

/* --- Admin-flavored data table overrides (2026-05-22) ---
 * Restyles the visual chrome on public data tables to match the dashboard
 * look: rounded card surface, tight padding, small uppercase muted header
 * row, no gold Oswald header. Column-specific rules (widths, image styling,
 * .rank-col font-size, etc.) defined earlier still apply.
 */
.rankings-table,
.data-table {
    background-color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    font-size: 0.875rem;
}
.rankings-table th,
.rankings-table td,
.data-table th,
.data-table td {
    padding: 10px 14px;
    border: 0;
    border-top: 1px solid var(--border);
}
.rankings-table thead th,
.data-table thead th {
    border-top: 0;
}
.rankings-table tbody tr:first-child td,
.data-table tbody tr:first-child td {
    border-top: 0;
}
.rankings-table thead,
.data-table thead {
    background-color: var(--surface-2);
}
.rankings-table th,
.data-table th {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
}
.rankings-table tbody tr:hover,
.data-table tbody tr:hover {
    background-color: var(--surface-2);
}
/* Preserve the chunky rank badge on the rankings page even at smaller base size. */
.rankings-table .rank-col {
    font-size: 1.5rem;
}
