/* ==========================================================================
   BİLMECE PAROLA - STİL DOSYASI
   Modern TV Show / Glassmorphism Aesthetic
   ========================================================================== */

:root {
  --bg-primary: #070a12;
  --bg-secondary: #0f172a;
  --card-bg: rgba(18, 26, 44, 0.82);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-glow: rgba(56, 189, 248, 0.15);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --color-primary: #38bdf8;
  --color-primary-dark: #0284c7;
  --color-gold: #f59e0b;
  --color-correct: #10b981;
  --color-correct-glow: rgba(16, 185, 129, 0.45);
  --color-wrong: #ef4444;
  --color-wrong-glow: rgba(239, 68, 68, 0.45);
  --color-pass: #f59e0b;
  --color-pass-glow: rgba(245, 158, 11, 0.45);
  --color-neutral: #1e293b;
  --color-neutral-border: #334155;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --wheel-size: 680px;
  --letter-size: 46px;
}

/* Reset & Temel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(30, 58, 138, 0.35) 0%, rgba(15, 23, 42, 0.8) 50%, #070a12 100%),
    radial-gradient(circle at 15% 85%, rgba(14, 165, 233, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.12) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Ana Konteyner */
.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   ÜST PANEL (HEADER & STATS)
   ========================================================================== */
.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 18px;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  margin-bottom: 12px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.1;
}

.logo-title span {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* İstatistik Kartları */
.header-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 80px;
}

.stat-card .stat-icon {
  font-size: 1.1rem;
}

.stat-card .stat-content {
  display: flex;
  flex-direction: column;
}

.stat-card .stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.stat-card .stat-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

/* Zaman Kartı Vurgusu */
.timer-card {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(14, 165, 233, 0.1);
}
.timer-card .stat-val {
  color: #38bdf8;
  font-variant-numeric: tabular-nums;
}
.timer-card.time-critical {
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(239, 68, 68, 0.18);
  animation: pulse-border 1s infinite alternate;
}
.timer-card.time-critical .stat-val {
  color: #f87171;
}

.stat-correct .stat-val { color: #34d399; }
.stat-wrong .stat-val { color: #f87171; }
.stat-pass .stat-val { color: #fbbf24; }

/* Aksiyon Butonları */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: rgba(30, 41, 59, 0.6);
  color: var(--text-main);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.icon-btn.restart-action:hover {
  color: #38bdf8;
  border-color: #38bdf8;
}

/* ==========================================================================
   ANA OYUN ALANI (WHEEL & CENTER HUB)
   ========================================================================== */
.arena-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  position: relative;
  min-height: 580px;
}

.wheel-stage {
  position: relative;
  width: var(--wheel-size);
  height: var(--wheel-size);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* 28 Harflik Daire */
.wheel-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

/* Tekil Harf Kutucuğu */
.wheel-letter {
  position: absolute;
  width: var(--letter-size);
  height: var(--letter-size);
  border-radius: 50%;
  background: var(--color-neutral);
  border: 2px solid var(--color-neutral-border);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.wheel-letter:hover {
  transform: translate(-50%, -50%) scale(1.12);
  z-index: 5;
}

/* Harf Durumları */
.wheel-letter.state-active {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  border-color: #ffffff;
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.22);
  z-index: 10;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.8), 0 0 8px #ffffff;
  animation: active-letter-pulse 1.6s infinite ease-in-out;
}

.wheel-letter.state-correct {
  background: linear-gradient(135deg, #059669, #10b981);
  border-color: #6ee7b7;
  color: #ffffff;
  box-shadow: 0 0 16px var(--color-correct-glow);
}

.wheel-letter.state-wrong {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-color: #fca5a5;
  color: #ffffff;
  box-shadow: 0 0 16px var(--color-wrong-glow);
}

.wheel-letter.state-pass {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-color: #fde68a;
  color: #ffffff;
  box-shadow: 0 0 16px var(--color-pass-glow);
}

/* ==========================================================================
   MERKEZ KART (CENTER HUB)
   ========================================================================== */
.center-hub {
  position: relative;
  width: 440px;
  max-width: 90%;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 24px 24px 20px 24px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(56, 189, 248, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 20;
}

/* Hub Başlığı */
.hub-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.active-letter-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  border: 3px solid #ffffff;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.7);
}

.round-badge {
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.round-badge.round-pass {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.45);
  color: #fbbf24;
}

/* Soru Konteyneri */
.question-container {
  width: 100%;
  margin-bottom: 16px;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.question-letter-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.question-letter-hint .highlight-letter {
  color: #38bdf8;
  font-weight: 800;
  font-size: 0.95rem;
}

.question-text {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* İpucu Göstergesi */
.hint-container {
  background: rgba(15, 23, 42, 0.6);
  border: 1px dashed rgba(245, 158, 11, 0.5);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.hint-tag {
  color: #fbbf24;
  font-weight: 700;
}

.hint-content {
  color: #ffffff;
  font-family: monospace;
  letter-spacing: 3px;
  font-size: 1rem;
}

/* Form ve Giriş */
.answer-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.answer-input {
  width: 100%;
  padding: 13px 85px 13px 18px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.answer-input::placeholder {
  color: var(--text-dim);
  font-weight: 400;
}

.answer-input:focus {
  border-color: #38bdf8;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-hint {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 8px;
  border: none;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-hint:hover {
  background: rgba(245, 158, 11, 0.35);
}

/* Butonlar */
.action-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 14px;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.btn-shortcut {
  font-size: 0.7rem;
  opacity: 0.75;
  font-weight: 500;
}

.btn-pass {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-pass:hover {
  background: linear-gradient(135deg, #b45309, #d97706);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.btn-submit {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #0369a1, #0284c7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.55);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--card-border);
  color: var(--text-main);
}
.btn-secondary:hover {
  background: rgba(51, 65, 85, 0.9);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* Cevap Bildirim Toasty */
.feedback-toast {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  z-index: 30;
}

.feedback-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.feedback-toast.correct {
  border-color: #10b981;
  color: #34d399;
  background: rgba(6, 78, 59, 0.92);
}

.feedback-toast.wrong {
  border-color: #ef4444;
  color: #fca5a5;
  background: rgba(127, 29, 29, 0.92);
}

/* ==========================================================================
   ALT BİLGİ (FOOTER)
   ========================================================================== */
.game-footer {
  text-align: center;
  padding: 10px 0;
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ==========================================================================
   MODAL PENCERELERİ
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  max-width: 540px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(56, 189, 248, 0.15);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 24px;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.45;
}

.rule-bullet {
  font-size: 1.25rem;
  line-height: 1;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Sonuç Ekranı Özel */
.result-badge {
  font-size: 3.5rem;
  margin-bottom: 8px;
}

.result-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.r-stat-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.r-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.r-stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.r-correct .r-stat-number { color: #34d399; }
.r-wrong .r-stat-number { color: #f87171; }
.r-empty .r-stat-number { color: #fbbf24; }
.r-time .r-stat-number { color: #38bdf8; }

.score-bar-wrapper {
  position: relative;
  width: 100%;
  height: 24px;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #10b981);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.score-bar-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* İnceleme Akordeonu */
.review-section {
  width: 100%;
  margin-bottom: 24px;
}

.review-list {
  max-height: 240px;
  overflow-y: auto;
  margin-top: 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.review-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.4);
  font-size: 0.85rem;
}

.review-letter-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-letter-badge.correct { background: #10b981; }
.review-letter-badge.wrong { background: #ef4444; }
.review-letter-badge.empty { background: #f59e0b; }

.review-details {
  flex: 1;
}

.review-q {
  color: var(--text-muted);
  margin-bottom: 3px;
  line-height: 1.35;
}

.review-a {
  font-weight: 700;
  color: #ffffff;
}

/* Konfeti Canvas */
.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2000;
}

/* ==========================================================================
   ANİMASYONLAR
   ========================================================================== */
@keyframes active-letter-pulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.8), 0 0 8px #ffffff;
    transform: translate(-50%, -50%) scale(1.22);
  }
  50% {
    box-shadow: 0 0 38px rgba(56, 189, 248, 1), 0 0 16px #38bdf8;
    transform: translate(-50%, -50%) scale(1.28);
  }
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 4px rgba(239, 68, 68, 0.4); }
  100% { box-shadow: 0 0 16px rgba(239, 68, 68, 0.8); }
}

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

@keyframes popIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   RESPONSİVE VE MOBİL UYARLAMA
   ========================================================================== */
@media (max-width: 900px) {
  :root {
    --wheel-size: 580px;
    --letter-size: 40px;
  }
  .center-hub {
    width: 380px;
    padding: 18px;
  }
  .question-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 680px) {
  :root {
    --wheel-size: 460px;
    --letter-size: 34px;
  }
  .wheel-letter {
    font-size: 1rem;
  }
  .center-hub {
    width: 320px;
    padding: 16px 14px;
    border-radius: 20px;
  }
  .active-letter-badge {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
  .question-container {
    min-height: 80px;
    margin-bottom: 10px;
  }
  .question-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .answer-input {
    padding: 10px 75px 10px 14px;
    font-size: 0.95rem;
  }
  .btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  .btn-shortcut {
    display: none;
  }
  .result-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  :root {
    --wheel-size: 360px;
    --letter-size: 28px;
  }
  .app-container {
    padding: 8px;
  }
  .game-header {
    padding: 8px 12px;
    border-radius: 14px;
  }
  .logo-title {
    font-size: 1.15rem;
  }
  .stat-card {
    padding: 4px 8px;
    min-width: 60px;
  }
  .stat-card .stat-val {
    font-size: 1rem;
  }
  .wheel-letter {
    font-size: 0.8rem;
    border-width: 1.5px;
  }
  .center-hub {
    width: 260px;
    padding: 12px 10px;
    border-radius: 16px;
  }
  .active-letter-badge {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .question-text {
    font-size: 0.85rem;
  }
  .arena-wrapper {
    min-height: 420px;
  }
}
