/* ========================================
   WrestleMania 42 Family Fan Guide
   Shared Stylesheet
   ======================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette - cohesive dark theme */
  --white: #FFFFFF;
  --off-white: #F0F0F3;
  --light-gray: #E2E2E8;
  --gray: #CCCCDD;
  --mid-gray: #9A9AAA;
  --dark-gray: #555566;
  --near-black: #111118;

  /* Brand - unified gold & red */
  --wwe-red: #CC1A2B;
  --wwe-red-dark: #A01525;
  --wwe-red-light: #E83048;
  --wm-gold: #D4A83C;
  --wm-gold-dark: #B8922F;
  --wm-gold-light: #F0CC5A;

  /* Dark sections - consistent navy */
  --navy: #0B0F1A;
  --navy-light: #141B2E;
  --navy-mid: #101628;

  /* Alignment */
  --face-blue: #4A90E2;
  --face-blue-light: #6CB0F0;
  --heel-red: #E04040;
  --heel-red-light: #F06060;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 20px rgba(201,168,67,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-y: scroll; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 68px;
}

a { color: var(--wwe-red); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--wwe-red-dark); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.section { width: 100%; padding: 80px 0; }
.section--dark { background: var(--near-black); color: var(--white); }
.section--gray { background: var(--navy-light); }
.section--red { background: var(--wwe-red); color: var(--white); }
.inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.inner--narrow { max-width: 900px; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--wm-gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--mid-gray);
  max-width: 850px;
  line-height: 1.7;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--wm-gold);
  transition: background var(--duration) var(--ease);
}
.nav-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  min-height: 64px;
  flex-shrink: 0;
}
.nav-logo {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--wm-gold) 0%, var(--wm-gold) 40%, #fff 50%, var(--wm-gold) 60%, var(--wm-gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 6s ease-in-out infinite;
}
@keyframes textShine {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: -100% 0; }
}
.nav-links { display: flex; gap: 6px; flex-shrink: 0; white-space: nowrap; }
.nav-links a {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}
.nav-links a:hover { color: var(--white) !important; background: rgba(255,255,255,0.08); }
.nav-links a.active {
  color: #FFD700 !important;
  background: rgba(255,215,0,0.12);
  border-bottom: 2px solid #FFD700;
}
.hamburger {
  display: none;
  background: none;
  color: var(--wm-gold);
  font-size: 1.6rem;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 15px 20px;
    border-bottom: 2px solid var(--wm-gold);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .hamburger { display: block; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1035 50%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 30px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--wm-gold);
  margin-bottom: 15px;
}
.hero h1 {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero h1 .gold { color: var(--wm-gold); }
.hero-sub {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* Countdown */
.countdown { display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.countdown-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,67,0.25);
  border-radius: 14px;
  padding: 28px 40px;
  min-width: 130px;
  text-align: center;
  backdrop-filter: blur(5px);
}
.countdown-item .num {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--wm-gold);
  display: block;
  line-height: 1;
}
.countdown-item .unit {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
  display: block;
}

/* Event Details Bar */
.event-bar {
  background: var(--near-black);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.event-bar-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.event-detail { text-align: center; }
.event-detail .label {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.event-detail .value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--wm-gold), var(--wm-gold-dark));
  color: #000;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #000;
}
.btn-red {
  background: var(--wwe-red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--wwe-red-dark);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--wm-gold);
  color: var(--wm-gold);
}
.btn-outline:hover {
  background: var(--wm-gold);
  color: #000;
}
.btn-sm { padding: 8px 20px; font-size: 0.78rem; }
.btn-play {
  background: var(--wwe-red);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 0;
  flex-shrink: 0;
}
.btn-play:hover { background: var(--wwe-red-dark); transform: scale(1.1); }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-face { background: var(--face-blue); color: #fff; }
.badge-heel { background: var(--heel-red); color: #fff; }
.badge-champ {
  background: linear-gradient(135deg, var(--wm-gold), var(--wm-gold-dark));
  color: #000;
}
.badge-night {
  background: rgba(201,168,67,0.15);
  color: var(--wm-gold);
  border: 1px solid rgba(201,168,67,0.3);
}

/* ===== CARDS ===== */
.card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
  color: var(--off-white);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--wm-gold);
}
.card-body { padding: 24px; }

/* Quick Link Cards (Home) */
.quick-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--off-white);
}
.quick-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--wm-gold);
  color: var(--off-white);
}
.quick-link .icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.quick-link h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--wm-gold);
}
.quick-link p { color: var(--mid-gray); font-size: 0.88rem; }

/* ===== WRESTLING 101 CARDS ===== */
.w101-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.w101-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}
.w101-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--wm-gold);
}
.w101-card .icon { font-size: 2rem; margin-bottom: 12px; }
.w101-card h3 { color: var(--wm-gold); margin-bottom: 8px; font-size: 1.05rem; }
.w101-card p { color: var(--mid-gray); font-size: 0.9rem; line-height: 1.65; }

/* ===== KNOW BEFORE YOU GO ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.tip-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
  transition: all var(--duration) var(--ease);
}
.tip-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-color: var(--wm-gold);
}
.tip-card .icon { font-size: 2rem; margin-bottom: 12px; }
.tip-card h3 { color: var(--wm-gold); margin-bottom: 8px; font-size: 1.05rem; }
.tip-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.65; }

/* ===== MATCH CARDS ===== */
.match-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  color: var(--off-white);
}
.match-card:hover { box-shadow: var(--shadow-lg); border-color: var(--wm-gold); }

/* Matchup Header */
.matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  flex-wrap: wrap;
}
.matchup-wrestler {
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.matchup-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 3px solid var(--wm-gold);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.matchup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.matchup-img .initials {
  font-size: 2rem;
  font-weight: 900;
  color: var(--wm-gold);
}
.matchup-name {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.matchup-nickname {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.matchup-stat {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.vs-badge {
  background: var(--wwe-red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(190,30,45,0.4);
}

.match-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 30px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

/* Match Content - Side by Side Layout */
.match-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
}
.match-sidebar {
  position: sticky;
  top: 70px;
  align-self: start;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.match-sidebar .matchup {
  padding: 20px 10px;
  background: none;
  gap: 10px;
}
.match-sidebar .matchup-img { width: 80px; height: 80px; }
.match-sidebar .matchup-name { font-size: 0.95rem; }
.match-sidebar .matchup-stat { font-size: 0.7rem; }
.match-sidebar .match-meta { text-align: center; padding: 0 10px; }
.match-sidebar .prediction-box { padding: 16px; }
.match-sidebar .prediction-box h4 { font-size: 0.8rem; margin-bottom: 10px; }
.match-sidebar .prediction-btn { font-size: 0.75rem; padding: 8px 12px; }
@media (max-width: 900px) {
  .match-layout { grid-template-columns: 1fr; }
  .match-sidebar { position: static; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
.match-content { padding: 30px; }
.match-section { margin-bottom: 30px; }
.match-section:last-child { margin-bottom: 0; }
.match-section h3 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--wm-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.match-section h3::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--wm-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.why-box {
  background: rgba(212,168,60,0.06);
  border-left: 4px solid var(--wm-gold);
  padding: 24px;
  border-radius: 0 14px 14px 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--off-white);
}

.story-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid-gray);
}

.stakes-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--mid-gray);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stakes-list li::before {
  content: '\26A1';
  position: absolute;
  left: 0;
  font-size: 1rem;
}
.stakes-list li:last-child { border-bottom: none; }

/* Match Prediction */
.prediction-box {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.prediction-box h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--off-white);
}
.prediction-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.prediction-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--off-white);
  transition: all var(--duration) var(--ease);
}
.prediction-btn:hover {
  border-color: var(--wwe-red);
  background: var(--wwe-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(190,30,45,0.3);
}
.prediction-btn.selected {
  border-color: var(--wm-gold);
  background: var(--wm-gold);
  color: #000;
  box-shadow: var(--shadow-gold);
}

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wwe-red);
  border: 3px solid var(--navy-light);
  box-shadow: var(--shadow-sm);
}
.timeline-date {
  font-size: 0.75rem;
  color: var(--wwe-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline-event {
  font-size: 0.82rem;
  color: var(--wm-gold-dark);
  font-weight: 700;
  margin: 2px 0;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ===== WRESTLER PROFILES ===== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  align-items: start;
}

.wrestler-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  color: var(--off-white);
}
.wrestler-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--wm-gold);
}

.wrestler-top {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  position: relative;
  transition: background var(--duration) var(--ease);
}
.wrestler-top:hover { background: rgba(255,255,255,0.03); }

.wrestler-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  background: var(--navy-mid);
}
.wrestler-img img { width: 100%; height: 100%; object-fit: cover; }
.wrestler-img .initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.wrestler-img.face-ring { border-color: var(--face-blue); }
.wrestler-img.heel-ring { border-color: var(--heel-red); }
.wrestler-img.face-ring .initials { background: var(--face-blue); }
.wrestler-img.heel-ring .initials { background: var(--heel-red); }

.wrestler-info { flex: 1; }
.wrestler-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2px;
}
.wrestler-info .nickname {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wm-gold-dark);
  font-style: italic;
  margin-bottom: 6px;
}
.wrestler-info .badges { display: flex; gap: 6px; flex-wrap: wrap; }

.wrestler-expand {
  color: var(--mid-gray);
  font-size: 1.2rem;
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}
.wrestler-card.open .wrestler-expand { transform: rotate(180deg); color: var(--wwe-red); }

.wrestler-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: slideDown 0.3s var(--ease);
}
.wrestler-card.open .wrestler-body { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Wrestler Stats */
.w-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.w-stat {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
}
.w-stat .label {
  font-size: 0.65rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.w-stat .val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--off-white);
  margin-top: 2px;
}
.w-stat--full { grid-column: span 2; }
.w-stat--gold .val { color: var(--wm-gold-dark); }

/* Wrestler Sections */
.w-section { margin-top: 20px; }
.w-section h4 {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--wm-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.w-bio {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}
.w-also {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-top: 8px;
  font-style: italic;
}

/* Theme Song Player */
.theme-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
}
.theme-info { flex: 1; }
.theme-info .song { font-weight: 700; font-size: 0.95rem; }
.theme-info .artist { font-size: 0.82rem; color: var(--mid-gray); }

/* Spotify Embed */
.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}
.spotify-embed iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
}

/* Finisher */
.finisher-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wwe-red);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
}

/* Chant Cards */
.chant-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
  transition: all var(--duration) var(--ease);
}
.chant-card:hover { border-color: var(--wm-gold); }
.chant-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--off-white);
}
.chant-when {
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-top: 2px;
}
.chant-tip {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-top: 4px;
  font-style: italic;
}

/* Taunts */
.taunt-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.taunt-item:last-child { border-bottom: none; }
.taunt-name { font-weight: 700; font-size: 0.92rem; color: var(--off-white); }
.taunt-desc { font-size: 0.85rem; color: var(--mid-gray); margin-top: 3px; }

/* Highlights */
.highlights-list { counter-reset: hl; }
.highlights-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--mid-gray);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  counter-increment: hl;
}
.highlights-list li::before {
  content: counter(hl);
  position: absolute;
  left: 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--wm-gold);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,168,60,0.12);
}
.highlights-list li:last-child { border-bottom: none; }

/* ===== GLOSSARY ===== */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media(max-width:1200px){.glossary-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.glossary-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.glossary-grid{grid-template-columns:1fr}}
.glossary-item {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 28px;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}
.glossary-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--wm-gold);
  transform: translateY(-2px);
}
.glossary-item dt {
  font-weight: 800;
  color: var(--wm-gold);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.glossary-item dd {
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}
.gallery-caption h4 { font-size: 0.95rem; font-weight: 700; }
.gallery-caption p { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ===== VIDEO CARDS ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  color: var(--off-white);
}
.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--wm-gold);
}
.video-card .embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-card .embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-card .video-info { padding: 16px 20px; }
.video-card .video-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.video-card .video-desc { font-size: 0.82rem; color: var(--mid-gray); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 40px 30px;
  text-align: center;
  font-size: 0.82rem;
}
.footer .heart { color: var(--wwe-red); }
.footer p + p { margin-top: 8px; }
.footer a { color: var(--wm-gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wwe-red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: var(--shadow-md);
  transition: all var(--duration) var(--ease);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { transform: translateY(-3px); background: var(--wwe-red-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .inner { padding: 0 18px; }
  .hero { padding: 50px 18px 40px; }
  .matchup { flex-direction: column; padding: 30px 18px; gap: 14px; }
  .matchup-img { width: 90px; height: 90px; }
  .profiles-grid { grid-template-columns: 1fr; }
  .w-stats { grid-template-columns: 1fr; }
  .w-stat--full { grid-column: span 1; }
  .event-bar-grid { gap: 20px; }
  .video-grid { grid-template-columns: 1fr; }
  .prediction-btns { flex-direction: column; align-items: stretch; }
  .prediction-btn { text-align: center; padding: 14px 20px; font-size: 0.95rem; min-height: 48px; }
}

@media (max-width: 480px) {
  .inner { padding: 0 12px; }
  .nav-inner { padding: 0 12px; }
  .hero { padding: 40px 16px 30px !important; }
  .hero h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; }
  .countdown { gap: 8px; }
  .countdown-item { min-width: 70px; padding: 14px 16px; }
  .countdown-item .num { font-size: 2.2rem; }
  .countdown-item .unit { font-size: 0.7rem; }
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 1rem; }
  .section-label { font-size: 0.75rem; }
  .event-detail .value { font-size: 0.95rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; min-height: 48px; }
  .matchup-name { font-size: 1.1rem; }
  .belt-grid { grid-template-columns: 1fr; }
  /* Ensure YouTube embeds don't overflow on small screens */
  .vid-embed, .embed-wrapper, .video-card .embed-wrapper { max-width: 100%; overflow: hidden; }
  iframe { max-width: 100%; }
  /* Spotify embeds */
  .spotify-embed iframe { max-width: 100%; }
  .glossary-item { padding: 16px 18px; }
  .glossary-item dd { font-size: 0.9rem; }
}

/* ===== MATCH PREVIEW GRID (Homepage) ===== */
.match-preview-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.match-preview-link { width: calc(33.33% - 11px); }
@media(max-width:1024px) { .match-preview-link { width: calc(50% - 8px); } }
@media(max-width:520px) { .match-preview-link { width: 100%; } }
.match-preview-grid .night-label { width: 100%; }
.match-preview-link { border-radius: 14px; overflow: hidden; display: block; border: 2px solid rgba(255,255,255,0.08); transition: all .3s ease; text-decoration: none; position: relative; }
.match-preview-link:hover { border-color: var(--wm-gold); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.3), 0 0 20px rgba(212,168,60,0.15); }
.match-preview-link img { width: 100%; display: block; }
.match-preview-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--wm-gold); text-align: center; pointer-events: none; }
/* match-preview responsive handled by flex above */

/* ===== GOLD ACCENT HOVERS ===== */
.glossary-item, .quick-link, .tip-card { border-top: 3px solid transparent; }
.glossary-item:hover, .quick-link:hover, .tip-card:hover { border-top-color: var(--wm-gold); }

/* ===== COMING SOON PLACEHOLDER ===== */
.coming-soon-box { text-align: center; padding: 40px 20px; background: rgba(255,255,255,0.03); border: 1px dashed rgba(255,255,255,0.12); border-radius: 14px; color: var(--mid-gray); }
.coming-soon-icon { font-size: 2rem; margin-bottom: 10px; }
.coming-soon-text { font-weight: 700; font-size: 1.1rem; color: var(--off-white); }
.coming-soon-sub { font-size: 0.9rem; margin-top: 6px; }

/* ===== VIDEO PLACEHOLDER CARD ===== */
.vid-card--placeholder .vid-embed { display: flex; align-items: center; justify-content: center; background: var(--navy-mid); }
.vid-placeholder-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--mid-gray); }
.vid-placeholder-inner .icon { font-size: 2rem; margin-bottom: 8px; }
.vid-placeholder-inner .text { font-size: 0.85rem; }

/* ===== TEAM DIVIDER (Videos page) ===== */
.team-divider { width: 100%; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--wm-gold); padding: 12px 0 8px; border-bottom: 1px solid rgba(212,168,60,0.15); margin-bottom: 8px; }
.vid-grid--multi { max-width: 100%; }
.vid-grid--multi .vid-card { width: calc(33.33% - 16px); }
@media(max-width:900px) { .vid-grid--multi .vid-card { width: calc(50% - 12px); } }
@media(max-width:600px) { .vid-grid--multi .vid-card { width: 100%; } }

/* ===== ADDITIONAL MOBILE REFINEMENTS ===== */
@media(max-width:600px) { .vid-card { width: 100% !important; min-width: 0 !important; } }
@media(max-width:400px) { .event-detail .value { font-size: 0.85rem; } .event-bar-grid { gap: 12px 20px; } }

/* === FACEOFF ANIMATIONS === */
@keyframes slideInLeft {
  from { transform: translateX(-80px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(80px);  opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes impactFlash {
  0%   { transform: scale(0.6); opacity: 0; }
  50%  { transform: scale(1.5); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes barSweep {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,60,0); }
  50%       { box-shadow: 0 0 16px 4px rgba(212,168,60,0.2); }
}
@keyframes titleSlam {
  0%   { letter-spacing: 0.6em; opacity: 0; transform: scale(1.25); }
  100% { letter-spacing: 0.05em; opacity: 1; transform: scale(1); }
}

/* === CINEMATIC CARDS === */
.cinematic-card {
  position: relative;
  overflow: visible;
  background: #0a0c12;
  border: 1px solid rgba(212, 168, 60, 0.2);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card-faceoff-area {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-faceoff-area.multi {
  height: auto;
  min-height: 160px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-left-panel,
.card-right-panel {
  position: absolute;
  top: 0;
  width: 52%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1rem 1rem;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
}
.card-left-panel {
  left: 0;
  background-color: #0f111a;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
  transform: translateX(-100%) rotate(-2deg);
  filter: blur(4px);
  opacity: 0;
}
.card-right-panel {
  right: 0;
  background-color: #111520;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  transform: translateX(100%) rotate(2deg);
  filter: blur(4px);
  opacity: 0;
}
/* Light overlays on panels - just enough for text readability near seam */
.card-left-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,12,18,0.1) 0%, rgba(10,12,18,0.3) 60%, rgba(10,12,18,0.8) 100%);
  z-index: 1;
}
.card-right-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(10,12,18,0.1) 0%, rgba(10,12,18,0.3) 60%, rgba(10,12,18,0.8) 100%);
  z-index: 1;
}
.card-left-panel > *, .card-right-panel > * { position: relative; z-index: 2; }
.cinematic-card.panel-in .card-left-panel {
  animation: panelSlideLeft 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cinematic-card.panel-in .card-right-panel {
  animation: panelSlideRight 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}
@keyframes panelSlideLeft {
  to { transform: translateX(0) rotate(0deg); filter: blur(0px); opacity: 1; }
}
@keyframes panelSlideRight {
  to { transform: translateX(0) rotate(0deg); filter: blur(0px); opacity: 1; }
}

/* Diagonal seam */
.card-seam {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  transform: translateX(-50%) skewX(-4deg);
  z-index: 10;
  pointer-events: none;
}
.seam-line {
  width: 2px;
  height: 100%;
  background: rgba(212, 168, 60, 0.4);
  margin: 0 auto;
  animation: seamBreath 3s ease-in-out infinite;
}
@keyframes seamBreath {
  0%, 100% { opacity: 0.3; box-shadow: none; }
  50% { opacity: 0.7; box-shadow: 0 0 8px rgba(212,168,60,0.5); }
}
.seam-flash {
  position: absolute;
  top: 0; left: -8px;
  width: 20px; height: 100%;
  background: rgba(255,255,255,0);
  opacity: 0;
}
.cinematic-card.impact .seam-flash {
  animation: seamFlash 0.25s ease-out forwards;
}
@keyframes seamFlash {
  0% { background: rgba(255,255,255,0.8); opacity: 1; }
  100% { background: rgba(212,168,60,0); opacity: 0; }
}
.shockwave {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 2px;
  border: 1px solid rgba(212,168,60,0.6);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
}
.cinematic-card.impact .shockwave {
  animation: shockExpand 0.4s ease-out 0.05s forwards;
}
@keyframes shockExpand {
  to { transform: translate(-50%,-50%) scale(80); opacity: 0; }
}

/* Sparks */
.spark {
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 3px;
  background: #D4A83C;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.cinematic-card.impact .spark { animation: sparkFly 0.5s ease-out forwards; }
.cinematic-card.impact .s1 { animation-delay: 0.02s; --dx: -60px; --dy: -40px; }
.cinematic-card.impact .s2 { animation-delay: 0.05s; --dx: 60px;  --dy: -35px; }
.cinematic-card.impact .s3 { animation-delay: 0.03s; --dx: -45px; --dy: 50px;  }
.cinematic-card.impact .s4 { animation-delay: 0.06s; --dx: 55px;  --dy: 45px;  }
@keyframes sparkFly {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.2); }
}

/* Wrestler labels */
.wrestler-label {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #ffffff;
  opacity: 0;
  max-width: 42%;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}
.cinematic-card.panel-in .wrestler-label {
  animation: labelFadeIn 0.3s ease-out 0.5s forwards;
}
.wrestler-label.left { text-align: left; }
.wrestler-label.right { text-align: right; }
@keyframes labelFadeIn { to { opacity: 1; } }
.wrestler-role {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(212,168,60,0.7);
  margin-top: 4px;
  opacity: 0;
}
.cinematic-card.panel-in .wrestler-role {
  animation: labelFadeIn 0.3s ease-out 0.65s forwards;
}
.wrestler-role.right { text-align: right; }

/* Championship stamp */
.card-center-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 20;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  width: 160px;
}
.cinematic-card.panel-in .card-center-stamp {
  animation: stampIn 0.35s ease-out 0.6s forwards;
}
@keyframes stampIn {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.championship-title {
  font-size: 0.6rem;
  font-family: Impact, 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4A83C;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(212,168,60,0.4);
  background: rgba(10,12,18,0.85);
  padding: 3px 8px;
  border-radius: 3px;
}
.match-badge {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 4px;
  display: inline-block;
}
.badge--title  { background: #D4A83C; color: #0a0c12; }
.badge--grudge { background: #c0392b; color: #ffffff; }
.badge--ladder { background: #27ae60; color: #ffffff; }
.badge--tag    { background: #2980b9; color: #ffffff; }
.badge--special{ background: #8e44ad; color: #ffffff; }

/* === MULTI-PERSON CARDS === */
.card-multi-panel {
  display: flex;
  flex-direction: row;
  padding: 0;
  background: none;
  /* Override the hidden initial state from singles panels */
  opacity: 1;
  transform: none;
  filter: none;
}
/* Disable the dark ::after overlay (slices have their own overlays) */
.card-multi-panel::after { display: none; }
.card-left-panel.card-multi-panel {
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
}
.card-right-panel.card-multi-panel {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}
/* Override animation for multi-panels - they're always visible */
.cinematic-card.panel-in .card-multi-panel {
  animation: none;
  opacity: 1;
  transform: none;
  filter: none;
}
.multi-slice {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 100%;
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
  background-color: #0f111a;
  overflow: hidden;
  z-index: 2;
}
.slice-name {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(0.55rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.95);
  z-index: 3;
  padding: 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slice-overlay { position: absolute; inset: 0; z-index: 2; }
.slice-overlay--left {
  background: linear-gradient(to right, rgba(10,12,18,0.5) 0%, rgba(10,12,18,0.15) 60%, rgba(10,12,18,0.1) 100%);
}
.slice-overlay--mid {
  background: linear-gradient(to bottom, rgba(10,12,18,0.3) 0%, rgba(10,12,18,0.02) 35%, rgba(10,12,18,0.02) 65%, rgba(10,12,18,0.5) 100%);
}
.slice-overlay--right-fade {
  background: linear-gradient(to right, rgba(10,12,18,0.05) 0%, rgba(10,12,18,0.25) 55%, rgba(10,12,18,0.85) 100%);
}
.slice-overlay--left-fade {
  background: linear-gradient(to right, rgba(10,12,18,0.85) 0%, rgba(10,12,18,0.25) 45%, rgba(10,12,18,0.05) 100%);
}
.slice-overlay--right {
  background: linear-gradient(to right, rgba(10,12,18,0.1) 0%, rgba(10,12,18,0.15) 60%, rgba(10,12,18,0.5) 100%);
}

/* Double-row faceoff for Fatal 4-Way */
.card-faceoff-area--double { height: 440px; }
.faceoff-row {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.faceoff-row .card-left-panel,
.faceoff-row .card-right-panel {
  position: absolute;
  top: 0;
  width: 52%;
  height: 100%;
}
.faceoff-row .card-left-panel { left: 0; }
.faceoff-row .card-right-panel { right: 0; }
.faceoff-row .card-seam {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  transform: translateX(-50%) skewX(-4deg);
  z-index: 10;
  pointer-events: none;
}
.row-divider {
  position: absolute;
  left: 0; right: 0;
  top: 220px;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, rgba(212,168,60,0.5) 20%, rgba(212,168,60,0.8) 50%, rgba(212,168,60,0.5) 80%, transparent 100%);
  z-index: 15;
}
.card-center-stamp--tall { top: 50%; }

/* Bottom bar */
.card-bottom-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(212,168,60,0.1);
}
.hype-label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-right: 6px;
  font-family: Impact, sans-serif;
}
.hype-pips { display: flex; gap: 3px; }
.pip {
  width: 10px; height: 10px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.pip.lit { background: #D4A83C; }
.cinematic-card.panel-in .pip.lit {
  animation: pipLight 0.2s ease-out forwards;
}
.pip:nth-child(1) { animation-delay: 0.7s; }
.pip:nth-child(2) { animation-delay: 0.76s; }
.pip:nth-child(3) { animation-delay: 0.82s; }
.pip:nth-child(4) { animation-delay: 0.88s; }
.pip:nth-child(5) { animation-delay: 0.94s; }
@keyframes pipLight {
  from { background: rgba(255,255,255,0.1); transform: scale(0.8); }
  to   { background: #D4A83C; transform: scale(1); }
}
.expand-hint {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* Story panel */
.card-story-panel {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(212,168,60,0.15);
  background: rgba(0,0,0,0.3);
}
.card-story-panel.open {
  display: block;
}
.story-bar {
  height: 2px;
  background: #D4A83C;
  width: 0;
  border-radius: 1px;
  margin-bottom: 0.75rem;
}
.card-story-panel.open .story-bar {
  animation: barSweep 0.5s ease-out forwards;
}
.card-story-panel .story-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D4A83C;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.card-story-panel .story-section-title::before {
  content: '';
  width: 4px;
  height: 16px;
  background: #D4A83C;
  border-radius: 2px;
  flex-shrink: 0;
}
.card-story-panel.open .story-section-title {
  animation: fadeUp 0.4s ease-out 0.15s forwards;
}
.card-story-panel .story-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  margin-bottom: 24px;
}
.card-story-panel .story-text:last-child {
  margin-bottom: 0;
}
.card-story-panel.open .story-text {
  animation: fadeUp 0.4s ease-out 0.25s forwards;
}
.card-story-panel.open .story-section:nth-child(3) .story-section-title {
  animation-delay: 0.4s;
}
.card-story-panel.open .story-section:nth-child(3) .story-text {
  animation-delay: 0.5s;
}

/* Night headers */
.night-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #D4A83C;
  background: rgba(212,168,60,0.06);
  border-radius: 0 6px 6px 0;
}
.night-badge {
  font-family: Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #D4A83C;
}
.night-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
}
.night-venue {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  display: block;
}
.night-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,168,60,0.3), transparent);
  margin: 2rem 0;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  /* Singles card mobile: vertical portrait poster layout */
  .cinematic-card { min-height: unset; overflow: hidden; border-radius: 6px; margin-left: 0; margin-right: 0; }
  .card-faceoff-area { height: auto; display: flex; flex-direction: column; overflow: hidden; }
  .card-left-panel, .card-right-panel {
    position: relative; width: 100%; height: 140px; top: auto; left: auto; right: auto;
    clip-path: none; transform: none !important; filter: none !important; opacity: 1 !important;
    padding: 0; background-size: cover; background-position: center 20%;
  }
  .card-left-panel .wrestler-label, .card-right-panel .wrestler-label {
    position: absolute; bottom: 22px; left: 10px; max-width: 70%;
    font-size: clamp(0.9rem, 4vw, 1.2rem); opacity: 1 !important; animation: none !important;
    text-shadow: 0 1px 6px rgba(0,0,0,1);
  }
  .card-right-panel .wrestler-label { left: auto; right: 10px; text-align: right; }
  .wrestler-role { position: absolute; bottom: 6px; left: 10px; opacity: 1 !important; animation: none !important; font-size: 0.6rem; }
  .card-right-panel .wrestler-role { left: auto; right: 10px; }
  .card-left-panel::after { background: linear-gradient(to bottom, rgba(10,12,18,0.05) 0%, rgba(10,12,18,0.2) 50%, rgba(10,12,18,0.85) 100%); }
  .card-right-panel::after { background: linear-gradient(to top, rgba(10,12,18,0.05) 0%, rgba(10,12,18,0.2) 50%, rgba(10,12,18,0.85) 100%); }
  .card-center-stamp {
    position: relative; top: auto; left: auto; transform: none; width: 100%; text-align: center;
    padding: 6px 12px; background: rgba(10,12,18,0.95);
    border-top: 1px solid rgba(212,168,60,0.3); border-bottom: 1px solid rgba(212,168,60,0.3);
    opacity: 1 !important; animation: none !important;
  }
  .championship-title { font-size: 0.65rem; letter-spacing: 0.08em; }
  .card-seam { display: none; }
  .spark { display: none; }
  .seam-line { animation: none; opacity: 0.4; }
  /* Disable all card animations on mobile */
  .cinematic-card.panel-in .card-left-panel, .cinematic-card.panel-in .card-right-panel,
  .cinematic-card.panel-in .wrestler-label, .cinematic-card.panel-in .wrestler-role,
  .cinematic-card.panel-in .card-center-stamp, .cinematic-card.panel-in .pip.lit {
    animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important;
  }
  /* Bottom bar */
  .card-bottom-bar { margin-top: 0; padding: 10px 14px; min-height: 44px; }
  .hype-label { font-size: 0.65rem; }
  .pip { width: 14px; height: 14px; }
  .expand-hint { font-size: 0.75rem; padding: 8px 12px; }
  .match-badge { font-size: 0.65rem; padding: 3px 10px; }
  /* Story panel */
  .card-story-panel { padding: 1rem; }
  .card-story-panel .story-text { font-size: 0.9rem; line-height: 1.75; }
  /* Multi-person panels on mobile */
  .card-multi-panel { position: relative; width: 100%; height: 140px; clip-path: none; flex-direction: row; }
  .multi-slice { height: 140px; }
  .slice-name { font-size: clamp(0.45rem, 2.5vw, 0.65rem); bottom: 6px; }
  /* Fatal 4-Way double row */
  .card-faceoff-area--double { height: auto; }
  .faceoff-row { height: auto; flex-direction: column; }
  .faceoff-row .card-left-panel, .faceoff-row .card-right-panel {
    width: 100%; height: 120px; position: relative; top: auto; left: auto; right: auto;
  }
  .faceoff-row .card-seam { display: none; }
  .row-divider { position: relative; top: auto; }
  /* Night headers */
  .night-header { flex-direction: column; align-items: flex-start; gap: 4px; padding: 0.6rem 1rem; }
  .night-date { font-size: 1rem; }
  .night-venue { font-size: 0.65rem; }
  /* Section padding */
  .section { padding-left: 12px; padding-right: 12px; }
}

/* Extra small phones */
@media (max-width: 390px) {
  .card-left-panel, .card-right-panel, .card-multi-panel { height: 120px; }
  .multi-slice { height: 120px; }
  .wrestler-label { font-size: 0.85rem !important; }
  .championship-title { font-size: 0.55rem; }
}

/* === WRESTLERS PAGE MOBILE === */
@media (max-width: 768px) {
  /* Force all wrestler grids to 2 columns on mobile (overrides inline JS styles) */
  .roster-grid { gap: 10px; grid-template-columns: repeat(2, 1fr) !important; }

  /* Prevent name text overflow */
  .w-card-overlay h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
  }
  .w-card-overlay .nick {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  /* Card: keep aspect-ratio but allow badges to breathe */
  .w-card { border-radius: 12px; }

  /* Overlay: tighter padding on mobile */
  .w-card-overlay { padding: 12px; }

  /* Wrestler name: smaller so it fits on 1-2 lines */
  .w-card-overlay h3 {
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
    line-height: 1.2;
    margin-bottom: 1px;
  }

  /* Nickname: compact */
  .w-card-overlay .nick {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 5px;
  }

  /* Badges: allow championship badge to wrap, smaller sizing */
  .w-badge {
    font-size: 0.6rem;
    padding: 2px 7px;
    letter-spacing: 0.08em;
    white-space: normal;
    line-height: 1.3;
  }

  /* Championship badge specifically: allow multi-line */
  .w-badge.champ {
    white-space: normal;
    line-height: 1.3;
    font-size: 0.55rem;
    padding: 3px 7px;
  }

  /* Matchup section title (championship label above each match group) */
  .matchup-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  /* Matchup section spacing */
  .matchup { margin-bottom: 30px; }
}

@media (max-width: 390px) {
  .roster-grid { gap: 8px; }
  .w-card-overlay { padding: 8px; }
  .w-card-overlay h3 { font-size: 0.85rem; }
  .w-card-overlay .nick { font-size: 0.6rem; }
  .w-badge { font-size: 0.55rem; padding: 2px 6px; }
}

/* === HYPE INTRO === */
#hype-intro {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse at 20% 25%, rgba(212,168,60,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 75%, rgba(204,26,43,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0a0c12 0%, #12162a 45%, #0a0c12 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
  overflow: hidden;
}
#hype-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,168,60,0.10) 0%, transparent 35%);
  animation: introSweep 4s ease-in-out infinite alternate;
  pointer-events: none;
}
#hype-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 60px,
      rgba(212,168,60,0.04) 60px,
      rgba(212,168,60,0.04) 61px
    );
  pointer-events: none;
  opacity: 0.7;
}
@keyframes introSweep {
  from { transform: translate(-10%, -10%) scale(1); }
  to   { transform: translate(10%, 10%) scale(1.15); }
}
#hype-intro .intro-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--wm-gold);
  text-transform: uppercase;
  letter-spacing: 0.6em;
  opacity: 0;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
#hype-intro .intro-title.animate {
  animation: titleSlam 0.7s ease-out forwards;
}
#hype-intro .intro-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}
#hype-intro .intro-sub.visible { opacity: 1; }
#hype-intro .intro-line {
  width: 60%;
  max-width: 400px;
  height: 2px;
  background: var(--wm-gold);
  margin-top: 20px;
  width: 0;
}
#hype-intro .intro-line.animate {
  animation: barSweep 0.6s ease-out forwards;
}
#hype-intro .skip-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
#hype-intro .skip-btn:hover { color: rgba(255,255,255,0.7); }

/* === HOMEPAGE HERO UPGRADES === */
.countdown-item .num {
  animation: glowPulse 2s ease-in-out infinite;
}
#hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 1.5em;
  margin-bottom: 20px;
  transition: opacity 0.5s ease;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(212,168,60,0.06) 0%, transparent 60%);
  background-size: 60% 60%;
  animation: heroSpotlight 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroSpotlight {
  from { background-position: 20% 30%; }
  to { background-position: 80% 70%; }
}

/* === PICKS PAGE === */
.picks-tabs { display: flex; justify-content: center; gap: 4px; padding: 12px 20px 0; background: var(--navy); }
.picks-tab { padding: 10px 24px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); background: none; border: 1px solid rgba(255,255,255,0.1); border-bottom: none; border-radius: 8px 8px 0 0; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.picks-tab.active { color: #D4A83C; border-color: rgba(212,168,60,0.3); background: rgba(212,168,60,0.08); }
.picks-tab:hover { color: #fff; }

.picks-night-header { font-family: Impact, sans-serif; font-size: 1rem; letter-spacing: 0.12em; color: #D4A83C; padding: 0.5rem 0; border-left: 4px solid #D4A83C; padding-left: 12px; margin-bottom: 12px; background: rgba(212,168,60,0.06); border-radius: 0 6px 6px 0; }

.pick-card { background: #0f111a; border: 1px solid rgba(212,168,60,0.2); border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.pick-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pick-badge { font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 2px 8px; border-radius: 3px; }
.pick-badge--title { background: #D4A83C; color: #0a0c12; }
.pick-badge--grudge { background: #c0392b; color: #fff; }
.pick-badge--ladder { background: #27ae60; color: #fff; }
.pick-badge--tag { background: #2980b9; color: #fff; }
.pick-badge--special { background: #8e44ad; color: #fff; }
.pick-night { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.pick-title { text-align: center; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: rgba(212,168,60,0.6); padding: 6px 10px 2px; }

.pick-sides { display: grid; grid-template-columns: 1fr 1fr; }
.pick-side { padding: 16px 12px; background: none; border: none; cursor: pointer; text-align: center; font-family: inherit; transition: all 0.2s; border-top: 2px solid transparent; }
.pick-side:first-child { border-right: 1px solid rgba(255,255,255,0.06); }
.pick-side:hover { background: rgba(212,168,60,0.05); }
.pick-side.selected { background: rgba(212,168,60,0.12); border-top-color: #D4A83C; }
.pick-name { font-family: Impact, 'Arial Narrow', sans-serif; font-size: clamp(0.85rem, 3vw, 1.15rem); text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.pick-side.selected .pick-name { color: #fff; }
.pick-role { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(212,168,60,0.5); margin-top: 3px; }
.pick-side.selected .pick-role { color: rgba(212,168,60,0.9); }

.pick-multi { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 12px; justify-content: center; }
.pick-option { padding: 8px 14px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.pick-option:hover { border-color: rgba(212,168,60,0.3); color: #fff; }
.pick-option.selected { border-color: #D4A83C; background: rgba(212,168,60,0.12); color: #fff; }

.picks-name-box { text-align: center; margin-bottom: 20px; padding: 20px; background: rgba(212,168,60,0.06); border: 1px solid rgba(212,168,60,0.15); border-radius: 10px; }
.picks-name-label { display: block; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: #D4A83C; margin-bottom: 10px; }
.picks-save-area { text-align: center; padding-top: 20px; }
.picks-input { padding: 12px 16px; font-size: 1rem; font-family: inherit; border-radius: 8px; border: 1px solid rgba(212,168,60,0.3); background: rgba(255,255,255,0.06); color: #fff; width: 200px; }
.picks-input:focus { outline: none; border-color: #D4A83C; }
.picks-save-btn { font-size: 0.85rem; }
.picks-msg { margin-top: 16px; font-size: 1rem; color: rgba(255,255,255,0.6); }
.picks-msg--success { color: #D4A83C; font-weight: 700; font-size: 1.1rem; }
.picks-empty { text-align: center; padding: 40px; color: rgba(255,255,255,0.4); font-size: 1rem; }
.picks-locked-msg { font-family: Impact, sans-serif; font-size: 1.1rem; color: var(--wwe-red); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }

/* Leaderboard table */
.lb-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.lb-table th { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(212,168,60,0.7); padding: 8px 12px; border-bottom: 1px solid rgba(212,168,60,0.2); text-align: left; }
.lb-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.lb-table tr:first-child td { font-weight: 700; }
.lb-score { font-family: Impact, sans-serif; font-size: 1.1rem; color: #D4A83C; }

/* Admin panel */
.picks-admin-btn { padding: 8px 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; cursor: pointer; font-family: inherit; }
.picks-admin-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.admin-header { font-size: 0.85rem; font-weight: 700; color: #D4A83C; margin: 20px 0 12px; text-transform: uppercase; letter-spacing: 2px; }
.admin-match { background: #0f111a; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; margin-bottom: 8px; padding: 10px 14px; }
.admin-title { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(212,168,60,0.6); margin-bottom: 8px; }
.admin-sides { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.admin-side, .admin-option { padding: 10px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; text-align: center; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.admin-side.selected, .admin-option.selected { border-color: #27ae60; background: rgba(39,174,96,0.15); color: #fff; }
.admin-multi { display: flex; flex-wrap: wrap; gap: 6px; }

/* === ENTRANCE LINK (in expanded wrestler card) === */
.entrance-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: rgba(212,168,60,0.08);
  border: 1px solid rgba(212,168,60,0.25);
  border-radius: 6px;
  color: rgba(212,168,60,0.9);
  font-size: 0.75rem;
  font-family: Impact, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.entrance-link:hover {
  background: rgba(212,168,60,0.18);
  border-color: rgba(212,168,60,0.6);
  color: #D4A83C;
}

/* === ENTRANCE BUTTON === */
.entrance-btn {
  width: 100%;
  padding: 6px 10px;
  background: rgba(212,168,60,0.08);
  border: 1px solid rgba(212,168,60,0.25);
  border-radius: 4px;
  color: rgba(212,168,60,0.8);
  font-size: 0.65rem;
  font-family: Impact, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s, border-color 0.15s;
  pointer-events: auto;
}
.entrance-btn:hover, .entrance-btn:active {
  background: rgba(212,168,60,0.18);
  border-color: rgba(212,168,60,0.6);
  color: #D4A83C;
}

/* === ENTRANCE MODAL === */
.entrance-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.entrance-modal {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.3);
  border-radius: 10px;
  padding: 1.25rem;
  width: 100%;
  max-width: 480px;
}
.entrance-modal-title {
  font-family: Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #D4A83C;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.entrance-modal-artist {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.entrance-modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 6px;
}
.entrance-modal-close {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  font-family: inherit;
}
.entrance-modal-close:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* === GLOSSARY TOOLTIPS === */
.glossary-tip {
  color: #D4A83C;
  cursor: pointer;
  border-bottom: 1px dotted rgba(212,168,60,0.5);
  position: relative;
}
.glossary-tip sup {
  font-size: 0.55rem;
  color: rgba(212,168,60,0.7);
  margin-left: 1px;
}
.glossary-tip::after {
  content: attr(data-def);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1c2a;
  border: 1px solid rgba(212,168,60,0.4);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  white-space: normal;
  width: 200px;
  text-align: center;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 100;
  font-family: inherit;
}
.glossary-tip.tip-active::after { opacity: 1; }
.glossary-tip.tip-below::after { bottom: auto; top: calc(100% + 6px); }

/* === NAV DROPDOWN === */
.nav-item--dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.2);
  border-radius: 0 0 8px 8px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1000;
  padding: 4px 0;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  background: none;
  border-bottom: none;
  border-radius: 0;
}
.nav-dropdown a:hover {
  color: #D4A83C !important;
  background: rgba(212,168,60,0.06);
}
@media (max-width: 768px) {
  .nav-item--dropdown .nav-dropdown { display: none; }
  .nav-item--dropdown > a::after { content: ''; }
}

/* === EVENTS LANDING === */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  padding: 2rem 0;
}
.event-type-card {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.2);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}
.event-type-card:hover {
  border-color: #D4A83C;
  transform: translateY(-2px);
}
.event-type-card .event-name {
  font-family: Impact, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.event-type-card .event-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.event-type-card .event-link {
  font-size: 0.75rem;
  color: #D4A83C;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === EVENT YEAR CARDS === */
.event-year-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}
.event-year-card {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.15);
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}
.event-year-card:hover { border-color: #D4A83C; }
.event-year-card .year-title {
  font-family: Impact, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 4px;
}
.event-year-card .year-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.status-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.status-badge--archived { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.status-badge--upcoming { background: rgba(212,168,60,0.15); color: #D4A83C; border: 1px solid rgba(212,168,60,0.3); }
.status-badge--soon     { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); }

/* === EVERGREEN HERO === */
.hero--evergreen {
  background: radial-gradient(ellipse at center top, #1a1c2a 0%, #0b0f1a 60%, #080c14 100%);
}
.hero-event-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -8px;
  margin-bottom: 18px;
}

/* === PAST EVENTS SECTION === */
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.past-event-card {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.15);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.15s;
}
.past-event-card:hover {
  border-color: rgba(212,168,60,0.5);
  transform: translateY(-2px);
}
.past-event-card .pe-name {
  font-family: Impact, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 4px;
}
.past-event-card .pe-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}
.past-event-card .pe-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  color: #D4A83C;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .past-events-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .past-event-card { padding: 1rem 1.25rem; }
}

/* === EVENT HERO === */
.event-hero {
  background: linear-gradient(to bottom, rgba(10,12,18,0.3) 0%, rgba(10,12,18,0.85) 60%, #0b0f1a 100%), url('') center/cover no-repeat;
  background-color: #0b0f1a;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(212,168,60,0.15);
}
.event-hero-inner { max-width: 900px; margin: 0 auto; }
.event-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,168,60,0.7);
  margin-bottom: 0.75rem;
}
.event-title {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 1rem;
}
.event-meta {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.event-sep { color: rgba(212,168,60,0.4); }
.event-network {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.event-status-live {
  font-family: Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--wm-gold);
  text-align: center;
  text-transform: uppercase;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .event-meta { flex-direction: column; gap: 0.25rem; }
  .event-sep { display: none; }
}

/* === TBA NOTICE === */
.tba-notice {
  background: rgba(212,168,60,0.06);
  border: 1px solid rgba(212,168,60,0.2);
  border-left: 4px solid rgba(212,168,60,0.5);
  border-radius: 0 6px 6px 0;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tba-notice strong { color: rgba(212,168,60,0.8); }
.tba-icon { margin-right: 6px; }

/* === UNCONFIRMED BADGE === */
.unconfirmed-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.3);
  z-index: 20;
  pointer-events: none;
}
.confirmed-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.4);
  color: rgba(39,174,96,0.9);
  z-index: 20;
  pointer-events: none;
}

/* === PICKS CALLOUT === */
.picks-callout { padding: 2rem 0; }
.picks-callout-card {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.2);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.picks-callout-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.picks-callout-title {
  font-family: Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.picks-callout-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.picks-status {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.picks-status--open   { background: rgba(39,174,96,0.15); color: #27ae60; border: 1px solid rgba(39,174,96,0.3); }
.picks-status--locked { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.1); }
.picks-status--soon   { background: rgba(212,168,60,0.1); color: rgba(212,168,60,0.7); border: 1px solid rgba(212,168,60,0.2); }

/* === RR TABS === */
.rr-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(212,168,60,0.2);
  margin-bottom: 2rem;
}
.rr-tab {
  padding: 0.75rem 1.25rem;
  font-family: Impact, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.rr-tab:hover { color: rgba(255,255,255,0.7); }
.rr-tab.active {
  color: #D4A83C;
  border-bottom-color: #D4A83C;
}
.rr-panel { display: none; }
.rr-panel.active { display: block; }
@media (max-width: 768px) {
  .rr-tab { padding: 0.6rem 0.75rem; font-size: 0.7rem; }
}

/* === HOW IT WORKS === */
.howit-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.howit-card {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.18);
  border-left: 4px solid #D4A83C;
  border-radius: 6px;
  padding: 1rem 1.25rem;
}
.howit-card h3 {
  font-family: Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.howit-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.howit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.howit-table th,
.howit-table td {
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.howit-table th {
  color: rgba(212,168,60,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.howit-table td { color: rgba(255,255,255,0.7); }
.howit-table td:last-child {
  text-align: right;
  color: #D4A83C;
  font-weight: 700;
  white-space: nowrap;
}
.howit-callout {
  background: rgba(212,168,60,0.08);
  border-left: 3px solid #D4A83C;
  padding: 0.6rem 0.9rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  border-radius: 0 4px 4px 0;
  line-height: 1.6;
}

/* === PICKER NAME === */
.picker-name-section {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.2);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.picker-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A83C;
  margin-bottom: 0.5rem;
}
.picker-input {
  width: 100%;
  background: #0a0c12;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.picker-input:focus { border-color: #D4A83C; }
.picker-name-error,
.picker-name-taken {
  font-size: 0.8rem;
  color: #ff6666;
  margin-top: 0.5rem;
}

/* === MATCH TOGGLE === */
.match-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}
.match-toggle-btn {
  flex: 1;
  padding: 0.75rem;
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.2);
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  font-family: Impact, sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
}
.match-toggle-btn.active {
  background: rgba(212,168,60,0.12);
  border-color: #D4A83C;
  color: #D4A83C;
}
.match-progress {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
}
.progress-sep { margin: 0 8px; color: rgba(212,168,60,0.3); }

/* === ENTRY SLOTS === */
.entry-slots-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.entry-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f111a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 6px 8px;
  transition: border-color 0.15s;
}
.entry-slot:focus-within { border-color: rgba(212,168,60,0.4); }
.entry-slot.filled { border-color: rgba(212,168,60,0.25); }
.slot-number {
  font-family: Impact, sans-serif;
  font-size: 0.85rem;
  color: #D4A83C;
  min-width: 22px;
  text-align: right;
  flex-shrink: 0;
}
.slot-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.78rem;
  font-family: inherit;
  padding: 0;
  min-width: 0;
}
.slot-input::placeholder { color: rgba(255,255,255,0.2); }
@media (max-width: 768px) {
  .entry-slots-container { grid-template-columns: 1fr; }
  .slot-input { font-size: 0.85rem; }
  .entry-slot { padding: 8px 10px; }
}

/* === SUPERLATIVES === */
.superlatives-section {
  background: rgba(212,168,60,0.04);
  border: 1px solid rgba(212,168,60,0.15);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.superlatives-title {
  font-family: Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4A83C;
  margin-bottom: 1rem;
}
.superlative-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.superlative-row:last-child { border-bottom: none; }
.sup-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  min-width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sup-pts {
  font-size: 0.65rem;
  color: rgba(212,168,60,0.6);
  margin-left: auto;
  white-space: nowrap;
}
.sup-input {
  flex: 1;
  background: #0f111a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 7px 10px;
  color: #ffffff;
  font-size: 0.8rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}
.sup-input:focus { border-color: rgba(212,168,60,0.4); }
@media (max-width: 768px) {
  .superlative-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sup-label { min-width: unset; }
  .sup-input { width: 100%; }
}

/* === SAVE PICKS === */
.save-picks-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212,168,60,0.2);
  text-align: center;
}
.save-summary {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.save-picks-btn {
  width: 100%;
  max-width: 400px;
}
.save-picks-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.save-confirmation {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #27ae60;
  font-weight: 600;
}
.save-error {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #ff6666;
}
.picks-lock-banner {
  background: rgba(212,168,60,0.1);
  border: 1px solid rgba(212,168,60,0.3);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: rgba(212,168,60,0.9);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* === LEADERBOARD === */
.leaderboard-table { width: 100%; }
.lb-row {
  display: grid;
  grid-template-columns: 50px 1fr repeat(3, 70px);
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}
.lb-header {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(212,168,60,0.2);
}
.lb-row--top3 { background: rgba(212,168,60,0.04); }
.lb-rank { font-family: Impact, sans-serif; font-size: 1rem; }
.lb-name { font-size: 0.9rem; color: #ffffff; font-weight: 500; }
.lb-row .lb-score { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-align: right; }
.lb-row .lb-total { color: #D4A83C; font-weight: 700; font-size: 0.95rem; }
.lb-tbd { color: rgba(255,255,255,0.25); }
.leaderboard-empty { color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; }
@media (max-width: 768px) {
  .lb-row { grid-template-columns: 40px 1fr repeat(2, 55px); }
  .lb-row .lb-score:nth-child(3) { display: none; }
}

/* === ADMIN PANEL === */
.admin-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.admin-toggle-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}
.admin-toggle-btn:hover { color: #ffffff; border-color: rgba(255,255,255,0.3); }
.admin-panel {
  margin-top: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1rem;
}
.admin-title {
  font-family: Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #D4A83C;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.admin-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.admin-section-title {
  font-family: Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(212,168,60,0.15);
}
.admin-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 1rem;
}
.admin-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f111a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 6px 8px;
}
@media (max-width: 768px) {
  .admin-slots { grid-template-columns: 1fr; }
}

/* === BACKLASH HERO (Tampa skyline) === */
.backlash-hero {
  background:
    linear-gradient(
      to bottom,
      rgba(10, 12, 18, 0.55) 0%,
      rgba(10, 12, 18, 0.75) 50%,
      rgba(10, 12, 18, 0.95) 100%
    ),
    linear-gradient(rgba(180, 80, 120, 0.08), rgba(180, 80, 120, 0.08)),
    url('../../../images/tampa-skyline.jpg') center center / cover no-repeat;
  background-color: #0b0f1a;
}

/* === HOME HERO (Tampa skyline tint) === */
.hero--tampa {
  background:
    linear-gradient(
      to bottom,
      rgba(10, 12, 18, 0.6) 0%,
      rgba(10, 12, 18, 0.78) 55%,
      rgba(10, 12, 18, 0.95) 100%
    ),
    linear-gradient(rgba(180, 80, 120, 0.06), rgba(180, 80, 120, 0.06)),
    url('images/tampa-skyline.jpg') center center / cover no-repeat;
  background-color: var(--navy);
}

/* === EVENT TABS (used on WM42 + future archives) === */
.event-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(212,168,60,0.2);
  margin-bottom: 0;
  padding-bottom: 0;
}
.event-tab {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,0.4);
  font-family: Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.event-tab:hover { color: rgba(255,255,255,0.7); }
.event-tab.active {
  color: #D4A83C;
  border-bottom-color: #D4A83C;
}
.event-tab-panel { display: none; }
.event-tab-panel.active { display: block; }
@media (max-width: 768px) {
  .event-tab { padding: 0.6rem 1rem; font-size: 0.75rem; }
}

/* === FROZEN NOTICE (archived events) === */
.frozen-notice {
  background: rgba(212,168,60,0.08);
  border: 1px solid rgba(212,168,60,0.25);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: rgba(212,168,60,0.8);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

/* === WM42 PICKS RESULTS BLOCK === */
.wm42-results-heading {
  font-family: Impact, sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4A83C;
  text-align: center;
  margin-bottom: 1.5rem;
}
.all-picks-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.all-picks-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}
.all-picks-toggle:hover { color: #fff; border-color: rgba(212,168,60,0.4); }
.all-picks-list { margin-top: 1.5rem; text-align: left; }
.picker-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.picker-block-name {
  font-family: Impact, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4A83C;
  margin-bottom: 0.5rem;
}
.picker-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.picker-table th, .picker-table td {
  padding: 5px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: left;
}
.picker-table th {
  color: rgba(212,168,60,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.picker-table td { color: rgba(255,255,255,0.7); }
.picker-table td:last-child { text-align: center; font-size: 1rem; }

/* === PICKS ROUTER === */
.picks-router-active {
  background: #0f111a;
  border: 1px solid rgba(212,168,60,0.25);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  max-width: 520px;
  margin: 2rem auto;
}
.router-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(212,168,60,0.6);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.router-event-name {
  font-family: Impact, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 1rem;
}
.router-status {
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.picks-router-past {
  max-width: 520px;
  margin: 0 auto 2rem;
}
.router-past-title {
  font-family: Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.router-past-grid { display: flex; flex-direction: column; gap: 8px; }
.router-past-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.router-past-card:hover { border-color: rgba(212,168,60,0.3); }
.router-past-name { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.router-past-link { font-size: 0.7rem; color: #D4A83C; letter-spacing: 0.08em; }
.btn-disabled { cursor: not-allowed; }

/* === PICK CARDS (event picks pages) === */
.pick-card {
  background: #0f111a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s;
}
.pick-card.has-pick { border-color: rgba(212,168,60,0.3); }
.pick-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.pick-match-type {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(212,168,60,0.15);
  color: #D4A83C;
}
.pick-unconfirmed {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.pick-sides {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pick-side {
  flex: 1;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  font-family: inherit;
}
.pick-side--right { text-align: right; }
.pick-side:hover { border-color: rgba(212,168,60,0.3); background: rgba(212,168,60,0.05); }
.pick-side.selected {
  border-color: #D4A83C;
  background: rgba(212,168,60,0.12);
}
.pick-name {
  display: block;
  font-family: Impact, sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
}
.pick-role {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.pick-side.selected .pick-name { color: #D4A83C; }
.pick-vs {
  font-family: Impact, sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pick-sides { flex-direction: column; gap: 6px; }
  .pick-vs { align-self: center; }
  .pick-side--right { text-align: left; }
}

/* === GUARANTEED ENTRANTS === */
.guaranteed-section {
  background: rgba(39,174,96,0.05);
  border: 1px solid rgba(39,174,96,0.2);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.guaranteed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.guaranteed-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(39,174,96,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guaranteed-count {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.guaranteed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.6rem;
  min-height: 28px;
}
.guaranteed-pill {
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
}
.guaranteed-empty {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}
.guaranteed-note {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
  margin: 0;
}

/* === ROSTER NOTICE === */
.roster-notice {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(212,168,60,0.4);
  border-radius: 0 6px 6px 0;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.roster-notice strong { color: rgba(212,168,60,0.7); }

/* ===== PRINT ===== */
@media print {
  .nav, .scroll-top, .hamburger, .prediction-box, .btn, .spotify-embed { display: none !important; }
  .wrestler-body { display: block !important; }
  .match-content { display: block !important; }
  body { background: #fff; color: #000; }
  .section--dark, .hero { background: #fff !important; color: #000 !important; }
}
