/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0e1a;
  --bg-card: rgba(255,255,255,0.04);
  --bg-glass: rgba(15,18,35,0.7);
  --border: rgba(255,255,255,0.08);
  --gold: #d4a843;
  --gold-dark: #b8912e;
  --gold-gradient: linear-gradient(135deg, #d4a843, #b8912e);
  --text: #e2e8f0;
  --text-muted: #64748b;
  --text-dim: #475569;
  --danger: #ef4444;
  --success: #22c55e;
  --nav-height: 64px;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Background Particles Canvas ──────────────────────────────────────── */
#bg-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Utility ──────────────────────────────────────────────────────────── */
.hidden { display: none !important; }
.screen { display: none; }
.screen.active { display: flex; }

/* ── Mute Button ──────────────────────────────────────────────────────── */
.mute-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 300;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.mute-btn:active { transform: scale(0.9); }

/* ── Login ────────────────────────────────────────────────────────────── */
#login-screen {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,168,67,0.08) 0%, transparent 60%), var(--bg);
  position: relative;
  z-index: 1;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 24px 20px;
  text-align: center;
}

.login-title {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(212,168,67,0.3);
}

.login-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.3em;
  margin-bottom: 36px;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.login-btn {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 8px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: break-word;
}

.login-btn:active {
  background: rgba(212,168,67,0.15);
  border-color: var(--gold);
  transform: scale(0.97);
}

/* ── Main App ─────────────────────────────────────────────────────────── */
#main-app {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

#page-container {
  flex: 1;
  overflow-y: auto;
  padding-bottom: var(--nav-height);
  -webkit-overflow-scrolling: touch;
}

.page {
  display: none;
  max-width: 420px;
  margin: 0 auto;
  padding: 16px 16px 24px;
  animation: pageIn 0.3s ease;
}

.page.active { display: block; }

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

/* ── Bottom Nav ───────────────────────────────────────────────────────── */
#bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 100;
}

.nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  gap: 2px;
  transition: color 0.2s;
  min-height: 44px;
}

.nav-tab.active { color: var(--gold); }
.nav-icon { font-size: 1.4rem; }
.nav-label { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Cards — Frosted Glass ────────────────────────────────────────────── */
.card {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.card-gold {
  border: 1px solid rgba(212,168,67,0.25);
  background: linear-gradient(135deg, rgba(212,168,67,0.08) 0%, rgba(212,168,67,0.02) 100%);
  box-shadow: 0 0 30px rgba(212,168,67,0.08);
}

/* ── Champion Banner ──────────────────────────────────────────────────── */
.champion-banner {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
}

.champion-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.champion-trophy { font-size: 2.4rem; margin-bottom: 4px; }

.champion-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  margin-bottom: 6px;
}

.champion-name {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

/* Gold shimmer scan line on champion name */
.champion-name::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmerScan 3s ease-in-out infinite;
}

@keyframes shimmerScan {
  0% { left: -60%; }
  100% { left: 160%; }
}

.champion-team {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Countdown ────────────────────────────────────────────────────────── */
.countdown-card { text-align: center; padding: 20px 16px; }

.countdown-event-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  min-width: 48px;
}

.countdown-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.happening-now {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── Section Headers ──────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  margin-top: 8px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #1a1a2e;
}

.btn-gold:active { transform: scale(0.97); filter: brightness(0.9); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-danger {
  background: transparent;
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--danger);
}

.btn-sm { padding: 6px 12px; font-size: 0.75rem; min-height: 32px; border-radius: 6px; }

.btn-block { width: 100%; }

/* ── Announcements ────────────────────────────────────────────────────── */
.announcement-card { position: relative; }

.announcement-card.pinned {
  border-left: 3px solid var(--gold);
}

.announcement-pin {
  font-size: 0.75rem;
  position: absolute;
  top: 12px;
  right: 12px;
}

.announcement-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.announcement-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.announcement-meta {
  font-size: 0.7rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.delete-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.delete-btn:hover { opacity: 1; color: var(--danger); }

/* ── Forms ────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 12px; }

.form-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
}

.form-textarea { min-height: 80px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--gold); }

.form-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-toggle input { accent-color: var(--gold); width: 18px; height: 18px; }

.inline-form {
  background: rgba(212,168,67,0.04);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.form-row { display: flex; gap: 8px; }

/* ── Lottery ──────────────────────────────────────────────────────────── */
.lottery-header {
  text-align: center;
  margin-bottom: 16px;
}

.lottery-title {
  font-size: 1.6rem;
  color: var(--gold);
}

.lottery-year {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

/* Lobby */
.lobby-section { margin-bottom: 16px; }

.lobby-players {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.lobby-player {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text);
}

.lobby-player.connected { border-color: var(--success); }
.lobby-player.disconnected { opacity: 0.4; }

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.odds-table th {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 6px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
}

.odds-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.team-color-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

/* Wheel container */
.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}

.wheel-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.wheel-vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s;
}

.wheel-vignette.active { opacity: 1; }

#lottery-wheel {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.pick-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
  text-shadow: 0 0 20px rgba(212,168,67,0.3);
}

.pick-label.spinning { animation: pulse 1s ease-in-out infinite; }

.spinner-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.spinner-name { color: var(--gold); font-weight: 600; }

/* ── Video Overlay ────────────────────────────────────────────────────── */
.video-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.video-overlay video {
  width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.video-overlay .video-skip {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
}

/* ── Countdown Overlay ────────────────────────────────────────────────── */
.countdown-overlay-full {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-number {
  font-family: 'Oswald', sans-serif;
  font-size: 8rem;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212,168,67,0.6), 0 0 120px rgba(212,168,67,0.2);
  animation: countSlam 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes countSlam {
  0% { transform: scale(2.5); opacity: 0; }
  60% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Reveal Overlay ───────────────────────────────────────────────────── */
.reveal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal-card {
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 0 60px rgba(212,168,67,0.2), 0 0 120px var(--team-color, rgba(212,168,67,0.1));
  animation: revealPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes revealPop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.reveal-pick-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.reveal-divider {
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  margin: 8px auto;
  animation: dividerDraw 0.4s ease forwards;
  animation-delay: 0.3s;
}

@keyframes dividerDraw {
  to { width: 80%; }
}

.reveal-team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 4px;
}

.reveal-owner {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Staggered reveal animations */
.reveal-stagger-1 { opacity: 0; animation: fadeSlideUp 0.3s ease forwards; animation-delay: 0.2s; }
.reveal-stagger-2 { opacity: 0; animation: fadeSlideUp 0.3s ease forwards; animation-delay: 0.3s; }
.reveal-stagger-3 { opacity: 0; animation: countSlam 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.5s; }
.reveal-stagger-4 { opacity: 0; animation: fadeSlideUp 0.3s ease forwards; animation-delay: 0.7s; }
.reveal-stagger-5 { opacity: 0; animation: fadeSlideUp 0.3s ease forwards; animation-delay: 1.0s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Results List ─────────────────────────────────────────────────────── */
.results-list { margin-top: 16px; }

.result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  animation: slideInRight 0.3s ease forwards;
}

.result-row:nth-child(1) { animation-delay: 0s; }
.result-row:nth-child(2) { animation-delay: 0.1s; }
.result-row:nth-child(3) { animation-delay: 0.2s; }
.result-row:nth-child(4) { animation-delay: 0.3s; }
.result-row:nth-child(5) { animation-delay: 0.4s; }
.result-row:nth-child(6) { animation-delay: 0.5s; }
.result-row:nth-child(7) { animation-delay: 0.6s; }
.result-row:nth-child(8) { animation-delay: 0.7s; }
.result-row:nth-child(9) { animation-delay: 0.8s; }
.result-row:nth-child(10) { animation-delay: 0.9s; }
.result-row:nth-child(11) { animation-delay: 1.0s; }
.result-row:nth-child(12) { animation-delay: 1.1s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.result-pick {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 28px;
  text-align: center;
}

.result-color-bar {
  width: 4px;
  height: 28px;
  border-radius: 2px;
}

.result-info { flex: 1; }

.result-team {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
}

.result-owner {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.result-row.fixed {
  opacity: 0.6;
}

.result-row.fixed .result-color-bar { background: #475569 !important; }

/* Shimmer on pick #1 row */
.result-row.pick-one {
  position: relative;
  overflow: hidden;
  border-color: rgba(212,168,67,0.2);
}

.result-row.pick-one::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.15), transparent);
  animation: shimmerScan 3s ease-in-out infinite;
}

/* ── History ──────────────────────────────────────────────────────────── */
.year-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.year-tab {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.year-tab.active {
  background: rgba(212,168,67,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Draft Stub ───────────────────────────────────────────────────────── */
.draft-stub {
  text-align: center;
  padding: 60px 20px;
}

.draft-stub-title {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.draft-stub-text {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.draft-grid-placeholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 280px;
  margin: 0 auto;
  opacity: 0.2;
}

.draft-cell {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ── Quick Links ──────────────────────────────────────────────────────── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s;
}

.quick-link:active { color: var(--gold); }
.quick-link-icon { font-size: 1.4rem; }

/* ── Scrollbar ────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* ── Standings Table ──────────────────────────────────────────────────── */
.standings-toggle {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 0;
  text-align: center;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  margin-top: 8px;
}

.standings-table th {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 4px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.65rem;
}

.standings-table td {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  color: var(--text-muted);
}

/* ── Sound Enable Prompt ──────────────────────────────────────────────── */
.sound-prompt {
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sound-prompt button {
  background: var(--gold-gradient);
  color: #1a1a2e;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  margin-left: 8px;
}
