/* ════════════════════════════════════════════════════════════
   Kippi Geografi Duell — stylesheet
   Combines fire-i-rad lobby/UI patterns + geografi game layout
   ════════════════════════════════════════════════════════════ */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --bg:          #070e1b;
  --surface:     #0c1525;
  --surface2:    #111e33;
  --border:      #1e2d47;
  --accent:      #7c6af7;
  --accent-dim:  rgba(124,106,247,.18);
  --text:        #e8eaf0;
  --muted:       #6b7a99;
  --green:       #22c55e;
  --yellow:      #f59e0b;
  --orange:      #f97316;
  --red:         #ef4444;

  /* Player colours */
  --me:          #7c6af7;   /* purple – my markers  */
  --opp:         #fbbf24;   /* amber  – opp markers */

  --radius:      12px;
  --radius-sm:   8px;
  --font:        system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════
   SCREEN SYSTEM
   ════════════════════════════════════════════════════════════ */
.screen {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px env(safe-area-inset-bottom, 8px);
  overflow-y: auto;
}

.screen[hidden] { display: none !important; }

.screen--game {
  padding: 0;
  overflow: hidden;
  height: 100dvh;
  min-height: unset;
  align-items: stretch;
}

.screen--result {
  padding: 0;
  overflow-y: auto;
  height: 100dvh;
  align-items: stretch;
}

/* ── Top bar / Logo ─────────────────────────────────────────── */
.top-bar {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 24px 0 16px;
}

.logo { font-size: 1.55rem; font-weight: 800; letter-spacing: -.5px; color: var(--text); }
.logo span { color: var(--accent); }

.tagline { margin-top: 6px; font-size: .85rem; color: var(--muted); line-height: 1.4; }

/* ── Card ───────────────────────────────────────────────────── */
.card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Form elements ──────────────────────────────────────────── */
.field-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mode-hint {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
}

.text-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color .18s;
}
.text-input:focus { border-color: var(--accent); }
.text-input::placeholder { color: var(--muted); }

.text-input--code {
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-ghost, .btn-small {
  font-family: var(--font);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity .15s, transform .1s;
}
.btn-primary:active, .btn-secondary:active,
.btn-ghost:active,   .btn-small:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  padding: 12px 20px;
  width: 100%;
}
.btn-primary:disabled { opacity: .38; cursor: not-allowed; transform: none; }
.btn-primary:hover:not(:disabled) { opacity: .88; }

.btn-primary--ghost {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  padding: 12px 20px;
  width: 100%;
}
.btn-secondary:hover { opacity: .88; }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  font-size: .88rem;
  padding: 8px 12px;
  width: 100%;
  text-align: center;
}
.btn-ghost:hover { color: var(--text); }
.btn-share { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--muted); padding: 8px 0; transition: color .15s; }
.btn-share:hover { color: var(--text); }
.btn-share svg { flex-shrink: 0; }

.btn-small {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .78rem;
  padding: 8px 12px;
  white-space: nowrap;
}
.btn-small:hover { opacity: .88; }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: .78rem;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Error ──────────────────────────────────────────────────── */
.error-text { color: #f87171; font-size: .85rem; text-align: center; min-height: 1.2em; }

/* ── Back link ──────────────────────────────────────────────── */
.back-link {
  color: var(--muted);
  font-size: .83rem;
  text-decoration: none;
  text-align: center;
  margin-top: 4px;
}
.back-link:hover { color: var(--text); }

/* ════════════════════════════════════════════════════════════
   LOBBY
   ════════════════════════════════════════════════════════════ */
.lobby-code-block {
  text-align: center;
  padding: 12px 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lobby-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.lobby-code {
  font-size: 3rem; font-weight: 900; letter-spacing: .18em;
  color: var(--accent); line-height: 1;
}

.btn-del { font-size: .85rem; padding: 9px 22px; margin-top: 6px; }

/* ── Mode selector ──────────────────────────────────────────── */
.mode-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}

.mode-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mode-btn {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.mode-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--text);
}
.mode-btn--active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--text);
}
.mode-btn:disabled {
  opacity: .55;
  cursor: default;
}

/* ── Players row ────────────────────────────────────────────── */
.players-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.player-slot { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }

.player-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 99px;
}
.player-badge--host  { background: rgba(124,106,247,.2); color: var(--accent); }
.player-badge--guest { background: rgba(34,197,94,.15);  color: #4ade80; }

.player-name { font-size: 1rem; font-weight: 700; text-align: center; word-break: break-word; }
.player-name--waiting { color: var(--muted); font-style: italic; font-weight: 400; }

.vs-label { font-size: 1.1rem; font-weight: 900; color: var(--accent); flex-shrink: 0; }

.waiting-text { font-size: .82rem; color: var(--muted); text-align: center; padding: 2px 0; }

/* ── Invite section ─────────────────────────────────────────── */
.invite-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 4px;
  border-top: 1px solid var(--border);
}

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

.invite-status { font-size: .82rem; min-height: 1.2em; color: var(--muted); }
.invite-status--pending  { color: #fbbf24; }
.invite-status--accepted { color: #4ade80; }
.invite-status--error    { color: #f87171; }

/* ════════════════════════════════════════════════════════════
   GAME SCREEN  (full-viewport flex column)
   ════════════════════════════════════════════════════════════ */

/* ── Game header ────────────────────────────────────────────── */
.game-header {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Ekstra høyre-padding gir plass til den faste lyd-knappen (right:14px, 36px bred) */
  padding: 8px 56px 8px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  min-height: 52px;
  background: var(--bg);
}

.back-btn-game {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 6px;
  flex-shrink: 0;
  border-radius: 6px;
  font-family: var(--font);
  transition: color .15s;
}
.back-btn-game:hover { color: var(--text); }

.game-header__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 0;
}

.country-question {
  font-size: clamp(.9rem, 4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.hint-text {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  min-height: 1em;
  text-align: center;
}

.game-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}

.geo-mute-btn {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 400;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(181, 221, 255, 0.18);
  background: rgba(10, 22, 40, 0.70);
  backdrop-filter: blur(8px);
  color: #f5fbff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, opacity .15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
  -webkit-tap-highlight-color: transparent;
  touch-action: auto;
}
.geo-mute-btn:hover { background: rgba(20, 42, 68, 0.90); border-color: var(--accent); }
.geo-mute-btn.muted { opacity: 0.45; }

/* ── Reveal-etiketter over kartmarkører ───────────────────────── */
.leaflet-tooltip.geo-label {
  background: rgba(7, 15, 25, 0.92);
  border: 1px solid var(--border);
  color: #fff;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 2px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
/* Fjern standardpilen — fargekantene knytter etiketten til markøren */
.leaflet-tooltip.geo-label::before { display: none; }

.geo-label--me     { border-color: #7c6af7; color: #d4c3ff; }
.geo-label--opp    { border-color: #fbbf24; color: #ffe6a3; }
.geo-label--answer { border-color: #22c55e; color: #8ef0b0; }

/* ── «Slik spiller du»-knapp + modal ──────────────────────────── */
.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px;
  margin-top: 4px;
}
.btn-text:hover { text-decoration: underline; }

.howto-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(3, 8, 16, 0.74);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.howto-card {
  background: var(--surface, #0c1525);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}
.howto-card h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}
.howto-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.howto-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text);
}
.howto-icon { font-size: 1.2rem; line-height: 1.2; flex-shrink: 0; width: 24px; text-align: center; }

.round-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.timer-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transition: background .2s, border-color .2s, color .2s;
}

.timer-badge--urgent {
  background: rgba(239,68,68,.15);
  border-color: rgba(239,68,68,.4);
  color: #f87171;
  animation: timerPulse .6s ease-in-out infinite alternate;
}

@keyframes timerPulse {
  from { opacity: .75; }
  to   { opacity: 1; }
}

/* ── Map ────────────────────────────────────────────────────── */
#map {
  flex: 1;
  min-height: 0;
  background: #0a1628;
  touch-action: none;
}

/* ── Opponent status bar ────────────────────────────────────── */
.opp-status-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
  font-size: .8rem;
}

.opp-status-label {
  color: var(--muted);
  font-weight: 600;
}

.opp-status-text {
  color: var(--text);
  font-weight: 700;
}

/* ── Feedback bar ───────────────────────────────────────────── */
.feedback-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  transition: background .2s;
  gap: 10px;
  background: var(--bg);
}

.feedback-bar__left {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.feedback-dist {
  font-size: .92rem;
  font-weight: 700;
}

.feedback-score {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}

.feedback-opp {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

.feedback-bar__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.total-label {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.total-score-val {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}

/* Feedback colour variants */
.feedback--great { background: rgba(34,197,94,.1);   border-top-color: rgba(34,197,94,.25); }
.feedback--good  { background: rgba(245,158,11,.09); border-top-color: rgba(245,158,11,.25); }
.feedback--ok    { background: rgba(249,115,22,.09); border-top-color: rgba(249,115,22,.25); }
.feedback--miss  { background: rgba(239,68,68,.09);  border-top-color: rgba(239,68,68,.25); }

.feedback--great .feedback-score { color: var(--green); }
.feedback--good  .feedback-score { color: var(--yellow); }
.feedback--ok    .feedback-score { color: var(--orange); }
.feedback--miss  .feedback-score { color: var(--red); }

/* ── Action row ─────────────────────────────────────────────── */
.action-row {
  display: flex;
  gap: 8px;
  padding: 8px 12px env(safe-area-inset-bottom, 8px);
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.btn-action {
  flex: 1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  transition: opacity .15s;
}

.btn-action:disabled {
  opacity: .3;
  cursor: default;
}

.btn-action--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-action--primary:hover:not(:disabled) { opacity: .88; }

.btn-action--next {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn-action--next:hover { opacity: .88; }

.btn-action--waiting {
  background: var(--surface2);
  border-color: var(--border);
  color: var(--muted);
  animation: pulse-wait 1.6s ease-in-out infinite;
  cursor: default;
}

@keyframes pulse-wait {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ── Klar-status chips ── */
.ready-status {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 6px 12px 10px;
  background: var(--bg);
  border-top: none;
}

.ready-chip {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ready-chip--ready {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #22c55e;
}

/* ════════════════════════════════════════════════════════════
   RESULT SCREEN
   ════════════════════════════════════════════════════════════ */
.result-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px env(safe-area-inset-bottom, 16px);
}

.overlay-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 28px 20px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.overlay-emoji { font-size: 2.8rem; line-height: 1; }

.overlay-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
}

/* ── Two-player score comparison ─────────────────────────── */
.result-players-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.result-player-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.result-player-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.result-player-score {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.result-player-score--me  { color: var(--accent); }
.result-player-score--opp { color: var(--opp); }

.result-pct {
  font-size: .83rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
}

/* ── Round legend ───────────────────────────────────────────── */
.result-legend {
  display: flex;
  gap: 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}
.legend-me  { color: var(--accent); }
.legend-opp { color: var(--opp); }

/* ── Round list ─────────────────────────────────────────────── */
.result-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
}

.result-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--surface2);
  font-size: .82rem;
}

.result-place {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-me-cell {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  font-size: .78rem;
}

.result-opp-cell {
  color: var(--opp);
  font-weight: 700;
  white-space: nowrap;
  font-size: .78rem;
}

/* ── Color scale legend ─────────────────────────────────────── */
.result-color-legend {
  font-size: .68rem;
  color: var(--muted);
  text-align: center;
  line-height: 2;
  padding: 4px 0 2px;
  width: 100%;
  word-spacing: .1em;
}

/* ── Action buttons (result) ────────────────────────────────── */
.overlay-card .btn-primary {
  width: 100%;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   NET BANNER + TOAST
   ════════════════════════════════════════════════════════════ */
.net-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 9px 16px;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  animation: bannerIn .2s ease;
}
.net-banner--offline { background: #ef4444; color: #fff; }
.net-banner--warn    { background: #f59e0b; color: #000; }
.net-banner--ok      { background: #22c55e; color: #fff; }

@keyframes bannerIn {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.game-toast {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 400;
  pointer-events: none;
  animation: toastSlideIn .2s ease;
}
.game-toast--warn { border-left-color: #f59e0b; }
.game-toast--err  { border-left-color: #ef4444; }

@keyframes toastSlideIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 12px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* ════════════════════════════════════════════════════════════
   LEAFLET OVERRIDES
   ════════════════════════════════════════════════════════════ */
.leaflet-container {
  background: #0a1628 !important;
  font-family: var(--font);
  cursor: crosshair;
}

/* Brighten tiles only — markers, lines and circles are unaffected */
.leaflet-tile-pane { filter: brightness(1.7); }

.leaflet-control-attribution {
  background: rgba(7,14,27,.65) !important;
  color: rgba(255,255,255,.35) !important;
  font-size: 9px !important;
  padding: 2px 5px !important;
  backdrop-filter: blur(4px);
}
.leaflet-control-attribution a { color: rgba(255,255,255,.4) !important; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .country-question { font-size: .85rem; }
  .lobby-code { font-size: 2.4rem; }
}
