/* ========== CSS VARIABLES ========== */
:root {
  /* Main colors - Miami Vice warm theme */
  --bg-dark: rgba(26, 26, 46, 0.85);
  --bg-panel: rgba(26, 26, 46, 0.7);
  --border-color: #FF6B6B;
  --border-light: #4ECDC4;

  /* Accent colors */
  --coral: #FF6B6B;
  --turquoise: #4ECDC4;
  --hot-pink: #FF006E;
  --yellow: #FFE66D;
  --white: #FFFFFF;
  --text-muted: #e0cdd8;

  /* Team colors */
  --seahawks-green: #69BE28;
  --seahawks-blue: #002244;
  --patriots-red: #C60C30;
  --patriots-blue: #002244;

  /* Fonts */
  --font-pixel: 'Press Start 2P', cursive;
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-title: 20px;
  --font-size-score: 36px;

  /* Spacing */
  --panel-radius: 16px;
  --panel-padding: 20px;
}

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

body {
  font-family: var(--font-pixel);
  background: linear-gradient(
    180deg,
    #FF6B6B 0%,
    #FF006E 25%,
    #8B5CF6 50%,
    #533483 75%,
    #1A1A2E 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--white);
  overflow-x: hidden;
}

/* ========== APP CONTAINER ========== */
.app-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== HEADER ========== */
.header {
  text-align: center;
  padding: 15px 0 25px;
}

.title {
  font-size: var(--font-size-title);
  color: var(--yellow);
  text-shadow:
    3px 3px 0 var(--hot-pink),
    -1px -1px 0 var(--turquoise);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.subtitle {
  font-size: var(--font-size-lg);
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

.matchup {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* ========== MAIN CONTENT ========== */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== TOP ROW: Score - Boombox - Score ========== */
.top-row {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 16px;
  align-items: center;
}

/* ========== SCORE PANELS ========== */
.score-panel {
  background: var(--bg-panel);
  border: 3px solid var(--yellow);
  border-radius: var(--panel-radius);
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 15px rgba(255, 230, 109, 0.2);
}

.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.team-name {
  font-size: var(--font-size-base);
  color: var(--white);
  letter-spacing: 1px;
}

.score-display .score {
  font-size: 32px;
  font-weight: bold;
}

.seahawks-panel .score { color: var(--seahawks-green); }
.patriots-panel .score { color: var(--patriots-red); }

/* Score panel special game indicators */
.score-panel.game-overtime {
  border-color: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 230, 109, 0.4), inset 0 0 15px rgba(255, 230, 109, 0.1);
}

.score-panel.game-defensive {
  border-color: var(--turquoise);
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.4), inset 0 0 15px rgba(78, 205, 196, 0.1);
}

.score-panel.game-shootout {
  border-color: var(--hot-pink);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4), inset 0 0 15px rgba(255, 0, 110, 0.1);
}

/* ========== BOOMBOX ========== */
.boombox-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boombox {
  background: linear-gradient(180deg, #2a2a3e 0%, #1a1a2e 100%);
  border: 4px solid var(--turquoise);
  border-radius: 18px;
  padding: 12px 14px 14px;
  width: 100%;
  position: relative;
  transition: transform 0.1s ease;
  box-shadow:
    0 0 20px rgba(78, 205, 196, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.08);
}

.boombox.shake {
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-5px) rotate(-2deg); }
  50% { transform: translateX(5px) rotate(2deg); }
  75% { transform: translateX(-3px) rotate(-1deg); }
}

/* Handle */
.boombox-handle {
  width: 40%;
  height: 8px;
  margin: 0 auto 10px;
  background: linear-gradient(180deg, #555 0%, #333 100%);
  border-radius: 4px 4px 0 0;
  border: 2px solid #666;
  border-bottom: none;
}

/* Top row: speakers + screen */
.boombox-top {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

/* ---- Speakers ---- */
.speaker {
  width: 100px;
  min-width: 100px;
  aspect-ratio: 1;
  background: radial-gradient(circle, #1a1a2e 40%, #111 100%);
  border: 3px solid var(--hot-pink);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 15px rgba(0, 0, 0, 0.6),
    0 0 8px rgba(255, 0, 110, 0.2);
}

/* Concentric cone rings */
.speaker-cone {
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle,
    rgba(255, 0, 110, 0.1) 0%,
    transparent 60%
  );
  box-shadow:
    inset 0 0 8px rgba(255, 0, 110, 0.15),
    0 0 4px rgba(255, 0, 110, 0.1);
}

.speaker-dome {
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    #444 0%,
    #222 50%,
    #111 100%
  );
  border: 2px solid rgba(255, 0, 110, 0.5);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

/* Grill lines across the speaker */
.speaker-grill {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 5px,
    rgba(255, 0, 110, 0.08) 5px,
    rgba(255, 0, 110, 0.08) 6px
  );
  pointer-events: none;
}

/* ---- Setlist screen ---- */
.setlist-screen {
  flex: 1;
  background: rgba(0, 0, 0, 0.75);
  border: 3px solid var(--turquoise);
  border-radius: 8px;
  padding: 14px 16px;
  min-height: 200px;
  box-shadow:
    inset 0 0 20px rgba(78, 205, 196, 0.15),
    inset 0 0 6px rgba(78, 205, 196, 0.25),
    0 0 12px rgba(78, 205, 196, 0.2);
}

.screen-label {
  text-align: center;
  font-size: var(--font-size-base);
  color: var(--yellow);
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(255, 230, 109, 0.4);
  padding-bottom: 8px;
  text-shadow: 0 0 8px rgba(255, 230, 109, 0.5);
  letter-spacing: 2px;
}

.setlist {
  list-style: none;
  counter-reset: song-counter;
}

.setlist li {
  counter-increment: song-counter;
  font-size: var(--font-size-base);
  padding: 5px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #7FFFDF;
  text-shadow: 0 0 4px rgba(78, 205, 196, 0.3);
  min-width: 0;
}

.setlist li::before {
  content: counter(song-counter) ".";
  color: var(--yellow);
  min-width: 22px;
  font-size: var(--font-size-sm);
  text-shadow: 0 0 4px rgba(255, 230, 109, 0.4);
}

.setlist li.placeholder {
  color: var(--text-muted);
}

.setlist li.placeholder::before {
  content: "";
  min-width: 0;
}

.song-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.guest-badge {
  font-size: var(--font-size-xs);
  background: var(--hot-pink);
  color: var(--white);
  padding: 2px 4px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 40%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.surprise-guest {
  margin-top: 10px;
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--yellow);
}

.surprise-guest:not(:empty)::before {
  content: "SURPRISE: ";
}

/* ---- Bottom controls: dials + cassette ---- */
.boombox-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.dial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    #555 0%,
    #333 40%,
    #1a1a1a 100%
  );
  border: 3px solid var(--yellow);
  position: relative;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 0 8px rgba(255, 230, 109, 0.15);
}

.dial-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: var(--yellow);
  border-radius: 2px;
}

/* Cassette window */
.cassette-window {
  flex: 1;
  max-width: 180px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 12px;
}

.cassette-reel {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.3);
}

/* Music notes animation */
.music-notes {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

.music-note {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: floatUp 1.5s ease forwards;
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) translateX(var(--drift, 0px));
  }
}

/* ========== PREDICT BUTTON ========== */
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.predict-btn {
  font-family: var(--font-pixel);
  font-size: var(--font-size-lg);
  padding: 15px 40px;
  background: var(--hot-pink);
  color: var(--white);
  border: 4px solid var(--yellow);
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.1s ease;
}

.predict-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
  background: var(--coral);
}

.predict-btn:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}

/* Focus styles for keyboard navigation */
.predict-btn:focus-visible,
.tab-btn:focus-visible,
.reset-btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.score-note {
  font-size: var(--font-size-sm);
  color: var(--coral);
  min-height: 20px;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Special game type badges */
.score-note.overtime {
  color: var(--yellow);
  background: rgba(255, 230, 109, 0.15);
  border: 2px solid var(--yellow);
  text-shadow: 0 0 8px rgba(255, 230, 109, 0.5);
  animation: pulseGlow 1.5s ease infinite;
}

.score-note.defensive {
  color: var(--turquoise);
  background: rgba(78, 205, 196, 0.15);
  border: 2px solid var(--turquoise);
  text-shadow: 0 0 8px rgba(78, 205, 196, 0.5);
}

.score-note.shootout {
  color: var(--hot-pink);
  background: rgba(255, 0, 110, 0.15);
  border: 2px solid var(--hot-pink);
  text-shadow: 0 0 8px rgba(255, 0, 110, 0.5);
  animation: pulseGlow 1s ease infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ========== BOTTOM ROW: Plays Panels ========== */
.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.plays-panel {
  background: var(--bg-panel);
  border: 3px solid var(--turquoise);
  border-radius: var(--panel-radius);
  padding: var(--panel-padding);
  min-height: 200px;
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
}

.plays-title {
  font-size: var(--font-size-sm);
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.seahawks-plays-panel .plays-title { color: var(--seahawks-green); }
.patriots-plays-panel .plays-title { color: var(--patriots-red); }

.plays-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.play-item {
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  border-left: 3px solid var(--coral);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.seahawks-plays-panel .play-item { border-left-color: var(--seahawks-green); }
.patriots-plays-panel .play-item { border-left-color: var(--patriots-red); }

.play-item .play-name {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--white);
  margin-bottom: 4px;
}

.play-item .play-player {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.play-item.cycling {
  opacity: 0.5;
}

.play-item.placeholder .play-name {
  color: var(--text-muted);
}

/* ========== TAB NAVIGATION ========== */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.tab-btn {
  font-family: var(--font-pixel);
  font-size: var(--font-size-sm);
  padding: 14px 32px;
  background: transparent;
  color: var(--text-muted);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
  color: var(--yellow);
  background: var(--bg-panel);
  border-color: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 230, 109, 0.15);
}

.tab-content {
  display: block;
}

.tab-content.hidden {
  display: none;
}

/* ========== TRENDS DASHBOARD ========== */
.trends-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--bg-panel);
  border: 2px solid var(--turquoise);
  border-radius: var(--panel-radius);
}

.trends-count {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.trends-count strong {
  color: var(--turquoise);
}

.reset-btn {
  font-family: var(--font-pixel);
  font-size: var(--font-size-xs);
  padding: 10px 16px;
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reset-btn:hover {
  background: var(--coral);
  color: var(--white);
}

.trends-section {
  margin-bottom: 24px;
}

.trends-section-title {
  font-size: var(--font-size-sm);
  color: var(--yellow);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 230, 109, 0.3);
  text-shadow: 0 0 6px rgba(255, 230, 109, 0.3);
  letter-spacing: 1px;
}

/* Score trend cards */
.score-trends-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.score-trend-card {
  background: var(--bg-panel);
  border-radius: var(--panel-radius);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sea-card { border: 2px solid var(--seahawks-green); }
.ne-card { border: 2px solid var(--patriots-red); }
.special-card { border: 2px solid var(--turquoise); }

.trend-team-name {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.trend-avg-score {
  font-size: 28px;
  font-weight: bold;
}

.sea-card .trend-avg-score { color: var(--seahawks-green); }
.ne-card .trend-avg-score { color: var(--patriots-red); }

.trend-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.trend-win-pct {
  font-size: var(--font-size-lg);
  font-weight: bold;
  color: var(--yellow);
  margin-top: 4px;
}

.special-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: 6px;
  width: 100%;
}

.special-stat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-stat-icon {
  font-size: var(--font-size-sm);
  width: 20px;
  text-align: center;
}

.special-stat-label {
  flex: 1;
  text-align: left;
}

.special-stat-value {
  font-weight: bold;
  min-width: 40px;
  text-align: right;
}

.special-stat-row.ot-row .special-stat-value { color: var(--yellow); }
.special-stat-row.def-row .special-stat-value { color: var(--turquoise); }
.special-stat-row.shoot-row .special-stat-value { color: var(--hot-pink); }

/* Bar charts */
.trends-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: var(--font-size-xs);
  color: var(--white);
  min-width: 160px;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-track {
  flex: 1;
  height: 18px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
  min-width: 2px;
}

.bar-fill.song-bar { background: var(--turquoise); }
.bar-fill.guest-bar { background: var(--hot-pink); }
.bar-fill.sea-bar { background: var(--seahawks-green); }
.bar-fill.ne-bar { background: var(--patriots-red); }

.bar-pct {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  min-width: 40px;
}

/* Plays grid in trends */
.trends-plays-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trends-play-team {
  font-size: var(--font-size-xs);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.sea-text { color: var(--seahawks-green); }
.ne-text { color: var(--patriots-red); }

/* Private browsing notice */
.storage-notice {
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--coral);
  padding: 8px;
  margin-bottom: 12px;
  border: 1px dashed var(--coral);
  border-radius: 4px;
}

/* ========== FOOTER ========== */
.footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .top-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .top-row .boombox-container {
    order: 0;
  }

  .top-row .seahawks-panel { order: 1; }
  .top-row .patriots-panel { order: 2; }

  .score-panel {
    min-height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
  }

  .team-header {
    flex-direction: row;
    gap: 10px;
  }

  .score-display .score {
    font-size: 28px;
  }

  .bottom-row {
    grid-template-columns: 1fr;
  }

  .boombox-top {
    flex-direction: column;
    align-items: center;
  }

  .speaker {
    width: 70px;
    min-width: 70px;
  }

  .boombox-top .speaker:first-child,
  .boombox-top .speaker:last-child {
    display: none;
  }

  .cassette-window {
    max-width: 100px;
  }

  .score-trends-grid {
    grid-template-columns: 1fr;
  }

  .trends-plays-grid {
    grid-template-columns: 1fr;
  }

  .bar-row {
    flex-wrap: wrap;
  }

  .bar-label {
    min-width: 100%;
    text-align: left;
    font-size: var(--font-size-xs);
    margin-bottom: 2px;
  }

  .bar-track {
    flex: 1;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-xs: 9px;
    --font-size-sm: 10px;
    --font-size-base: 11px;
    --font-size-lg: 13px;
    --font-size-title: 16px;
    --font-size-score: 28px;
    --panel-padding: 12px;
  }

  .header {
    padding: 10px 0 15px;
  }

  .predict-btn {
    padding: 12px 30px;
    font-size: var(--font-size-base);
  }

  .setlist-screen {
    min-height: auto;
    padding: 10px 12px;
  }

  .special-stat-label {
    font-size: 8px;
  }
}

/* ---- Small phones (360-390px) ---- */
@media (max-width: 400px) {
  /* Reclaim padding: 20px -> 10px = 20px more content */
  .app-container {
    padding: 10px;
  }

  /* Tighten tab buttons so they don't dominate */
  .tab-btn {
    padding: 12px 18px;
    font-size: 9px;
  }

  /* Compact header */
  .title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .subtitle {
    font-size: 9px;
    margin-bottom: 4px;
  }

  .matchup {
    font-size: 8px;
  }

  /* Tighter boombox */
  .boombox {
    padding: 8px 10px 10px;
  }

  .boombox-handle {
    display: none;
  }

  /* Smaller dials so controls don't crowd */
  .dial {
    width: 30px;
    height: 30px;
  }

  .dial-notch {
    top: 3px;
    height: 7px;
  }

  .cassette-window {
    height: 28px;
  }

  .boombox-controls {
    margin-top: 4px;
  }

  /* Compact score panels */
  .score-panel {
    padding: 10px;
  }

  .score-display .score {
    font-size: 24px;
  }

  /* Tighter plays */
  .plays-panel {
    padding: 10px;
  }

  .play-item {
    padding: 6px;
  }

  /* Setlist compact: reduce song font and tighten rows */
  .setlist li {
    font-size: 9px;
    gap: 4px;
    padding: 2px 0;
  }

  .setlist li::before {
    min-width: 16px;
    font-size: 8px;
  }

  .screen-label {
    font-size: 9px;
    margin-bottom: 6px;
    padding-bottom: 5px;
    letter-spacing: 1px;
  }

  .surprise-guest {
    margin-top: 6px;
  }

  /* Guest badges: truncate to max 30% width */
  .guest-badge {
    padding: 1px 3px;
    font-size: 7px;
    max-width: 30%;
  }

  /* Trends cards tighter */
  .score-trend-card {
    padding: 10px;
  }

  .trend-avg-score {
    font-size: 22px;
  }

  /* Footer tighter */
  .footer {
    padding: 12px;
  }
}
