/* --- Game container --- */
.game-container {
  max-width: 800px;
  width: 95%;
  padding: 1.5rem 0;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- Scoreboard --- */
#scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.score-team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.score-label.font-retro {
  font-size: 0.5rem;
  line-height: 1.4;
}

.score-label.font-modern {
  font-size: 0.75rem;
}

.score-left .score-label { color: var(--team-left); }
.score-right .score-label { color: var(--team-right); }

.score-value {
  font-size: 2rem;
  font-weight: 800;
}

.score-left .score-value { color: var(--team-left); }
.score-right .score-value { color: var(--team-right); }

.round-indicator {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* --- Phase banner --- */
.phase-banner {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text);
  animation: fadeIn 0.3s ease;
}

.banner-role {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4ade80;
  margin-bottom: 0.3rem;
}

.banner-clue {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0.25rem 0;
  font-style: normal;
}

.banner-sub {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  font-style: normal;
  line-height: 1.5;
}

.scale-word {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.5rem;
  display: inline;
}

/* When it's YOUR turn to act — bigger, bolder */
.phase-banner.action-needed {
  font-size: 1.5rem;
  font-weight: 800;
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent);
  color: #fff;
  padding: 1rem;
}

/* When you're just waiting — subtler */
.phase-banner.passive {
  font-size: 1rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}

/* --- Timer --- */
.timer-container {
  position: relative;
  height: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.timer-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f0d060);
  border-radius: 12px;
  width: 100%;
  transition: width linear;
}

.timer-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--bg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timer-warning .timer-bar {
  background: var(--danger);
  animation: pulse 0.5s ease-in-out infinite;
}

.timer-warning {
  animation: shake 0.3s ease-in-out infinite;
}

/* ==================== */
/* --- SCALE SLIDER --- */
/* ==================== */

.scale-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
}

/* Labels above the track */
.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.slider-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  max-width: 45%;
}

.slider-label-left { text-align: left; }
.slider-label-right { text-align: right; }

/* The track — rainbow gradient */
.slider-track {
  position: relative;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(
    to right,
    #ef4444, #f97316, #fbbf24, #facc15,
    #a3e635, #34d399, #22d3ee, #38bdf8,
    #60a5fa, #818cf8, #a78bfa, #c084fc
  );
  border: 3px solid rgba(255, 255, 255, 0.12);
  cursor: default;
  user-select: none;
  touch-action: none;
}

/* Draggable knob on the track */
.slider-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f5f5f5, #ccc);
  border: 4px solid rgba(0, 0, 0, 0.6);
  z-index: 4;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  cursor: default;
  transition: left 0.15s ease;
  pointer-events: none;
}

.slider-knob.no-transition {
  transition: none;
}

.slider-knob.draggable {
  cursor: grab;
  pointer-events: auto;
  animation: knobPulse 1.2s ease-in-out infinite;
  border-color: var(--accent);
}

.slider-knob.draggable:active {
  cursor: grabbing;
  animation: none;
  transform: scale(1.1);
}

.slider-knob.hidden {
  display: none;
}

@keyframes knobPulse {
  0%, 100% { box-shadow: 0 3px 10px rgba(0,0,0,0.5), 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 3px 10px rgba(0,0,0,0.5), 0 0 0 10px rgba(212, 175, 55, 0); }
}

/* Target zone — highlighted band on the track during reveal */
.slider-target-zone {
  position: absolute;
  top: -6px;
  bottom: -6px;
  width: 12%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
}

.slider-target-zone.visible {
  opacity: 1;
}

/* Target indicator for clue giver */
.target-indicator {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  margin-left: -14px;
  background: #fff;
  border: 4px solid #000;
  border-radius: 50%;
  z-index: 8;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
  animation: targetPulse 1s ease-in-out infinite;
  pointer-events: none;
}

.target-indicator::after {
  content: "TARGET";
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

@keyframes targetPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(255,255,255,0.8); }
  50% { transform: scale(1.2); box-shadow: 0 0 24px rgba(255,255,255,1); }
}

/* --- Team-specific knob styles --- */

/* Retro: square pixelated knob */
body.team-retro-active .slider-knob {
  border-radius: 0;
  background: #7eb8da;
  border: 5px solid #1a1a2e;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
  image-rendering: pixelated;
}

body.team-retro-active .slider-knob.draggable {
  border-color: #fff;
  animation: knobPulseRetro 1.2s ease-in-out infinite;
}

@keyframes knobPulseRetro {
  0%, 100% { box-shadow: 4px 4px 0 rgba(0,0,0,0.4), 0 0 0 0 rgba(126, 184, 218, 0.4); }
  50% { box-shadow: 4px 4px 0 rgba(0,0,0,0.4), 0 0 0 8px rgba(126, 184, 218, 0); }
}

body.team-retro-active .slider-track {
  border-radius: 0;
  border: 4px solid var(--team-left);
}

/* Modern: smooth circular knob (default) */
body.team-fancy-active .slider-knob {
  background: radial-gradient(circle at 35% 30%, #f0d060, var(--accent));
  border-color: rgba(212, 175, 55, 0.6);
}

body.team-fancy-active .slider-track {
  border-radius: 24px;
  border-color: rgba(212, 175, 55, 0.2);
}

/* --- Clue area --- */
.clue-area {
  text-align: center;
}

.clue-prompt {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-dim);
}

.clue-area input {
  max-width: 300px;
  margin: 0 auto 0.75rem;
  text-align: center;
  font-size: 1.2rem;
}

.clue-display {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  animation: slideUp 0.3s ease;
}

.clue-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.clue-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 4px;
}

/* --- Action areas --- */
.action-area {
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.oppose-prompt {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.oppose-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-oppose {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
}

.btn-oppose[data-guess="left"] {
  background: var(--team-left-dim);
  color: var(--team-left);
  border: 2px solid var(--team-left);
}

.btn-oppose[data-guess="right"] {
  background: var(--team-right-dim);
  color: var(--team-right);
  border: 2px solid var(--team-right);
}

/* --- Needle controls --- */
.needle-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.btn-needle-dir {
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--bg-card);
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.btn-needle-dir:hover {
  border-color: var(--accent);
}

.btn-needle-confirm {
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
}

.times-up-flash {
  color: var(--danger);
  animation: pulse 0.6s ease-in-out infinite;
  font-weight: 800;
  display: block;
  margin-top: 0.25rem;
}

.waiting-text {
  color: var(--text-dim);
  font-size: 1.1rem;
  font-style: italic;
}

/* --- Players strip --- */
.players-strip {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-top: auto;
}

.player-chip {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.player-chip.team-left {
  border-color: rgba(126, 184, 218, 0.3);
}

.player-chip.team-right {
  border-color: rgba(212, 175, 55, 0.3);
}

.player-chip.clue-giver {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: glow 1.5s ease-in-out infinite;
}

.player-chip.clue-giver::before {
  content: "\1F3A4";
  font-size: 0.8rem;
}

.player-chip.is-me {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--accent);
  padding: 0.4rem 0.8rem;
  font-size: 1rem;
  font-weight: 700;
}

.player-chip.is-me .chip-avatar {
  font-size: 1.6rem;
}

.player-chip.disconnected {
  opacity: 0.3;
}

.player-chip .chip-avatar {
  font-size: 1.1rem;
}

/* --- Result overlay --- */
.result-card {
  animation: slideUp 0.4s ease;
}

.result-breakdown {
  text-align: left;
  margin: 1rem 0;
  line-height: 1.8;
}

.result-headline {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}

.result-direction {
  text-align: center;
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.result-scores-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.result-team-score {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-team-name {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.result-pts {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.result-pts.points-positive {
  color: var(--success);
}

.result-pts.points-zero {
  color: var(--text-dim);
}

.result-detail {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.result-win .result-headline {
  color: var(--success);
}

.result-lose {
  color: var(--danger);
}

/* Scale visualization in results */
.result-scale-viz {
  margin: 2.5rem 0 2rem;
  padding-top: 1rem;
}

.result-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.result-scale-bar {
  position: relative;
  height: 24px;
  border-radius: 12px;
  background: linear-gradient(
    to right,
    #ef4444, #f97316, #fbbf24, #facc15,
    #a3e635, #34d399, #22d3ee, #38bdf8,
    #60a5fa, #818cf8, #a78bfa, #c084fc
  );
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.result-marker {
  position: absolute;
  top: -8px;
  bottom: -8px;
  width: 4px;
  margin-left: -2px;
  border-radius: 2px;
}

/* Retro team marker — thick, square, pixelated */
.marker-retro {
  width: 8px;
  margin-left: -4px;
  border-radius: 0;
  background: var(--team-left);
  border: 2px solid #0b0d2a;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
}

/* Fancy team marker — thin, rounded, glowing */
.marker-fancy {
  width: 4px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--team-right);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Target — circle, not a line */
.result-marker-target {
  width: 22px;
  height: 22px;
  margin-left: -11px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--success);
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
}

.result-marker-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 2px 6px;
  border-radius: 3px;
}

.result-marker-label-top {
  bottom: calc(100% + 28px);
}

.result-marker-label-target {
  bottom: calc(100% + 6px);
}

.result-marker-label-bottom {
  top: calc(100% + 6px);
}

.result-marker-target .result-marker-label-target {
  background: var(--success);
  color: #000;
}

/* Retro marker labels — pixel style bg */
.marker-retro .result-marker-label {
  background: rgba(126, 184, 218, 0.9);
  color: #000;
  border-radius: 0;
}

/* Fancy marker labels — rounded, gold bg */
.marker-fancy .result-marker-label {
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  border-radius: 8px;
}

.result-you-tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.7rem;
}

.result-role-tag {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.7rem;
}

.result-my-team {
  border: 2px solid var(--accent);
  background: rgba(212, 175, 55, 0.1) !important;
}

/* Ready section */
.result-ready-section {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.result-ready-count {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.result-hint {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* --- Continue overlay --- */
.continue-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

#continue-scores {
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

/* ==================== */
/* --- TEAM RETRO GAME VISUALS --- */
/* ==================== */

body.team-retro-active {
  image-rendering: pixelated;
}

body.team-retro-active .phase-banner {
  font-family: "Press Start 2P", monospace;
  font-size: 0.75rem;
  line-height: 1.8;
  border-radius: 0;
  border: 4px solid var(--team-left);
  box-shadow: 6px 6px 0 rgba(126, 184, 218, 0.25);
}

body.team-retro-active .phase-banner.action-needed {
  font-size: 0.85rem;
  border-color: #4ade80;
  box-shadow: 6px 6px 0 rgba(74, 222, 128, 0.25);
}

body.team-retro-active .banner-clue {
  font-family: "Press Start 2P", monospace;
  font-size: 1.4rem;
}

body.team-retro-active .banner-sub {
  font-family: "Press Start 2P", monospace;
  font-size: 0.75rem;
  line-height: 2;
}

body.team-retro-active .score-value {
  font-family: "Press Start 2P", monospace;
}

body.team-retro-active .round-indicator {
  font-family: "Press Start 2P", monospace;
  font-size: 0.6rem;
}

body.team-retro-active .clue-text {
  font-family: "Press Start 2P", monospace;
  font-size: 1rem;
}

body.team-retro-active .clue-display {
  border-radius: 0;
  border: 4px solid var(--team-left);
  box-shadow: 4px 4px 0 rgba(126, 184, 218, 0.2);
}

body.team-retro-active .btn-primary {
  border-radius: 0;
  font-family: "Press Start 2P", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  border: 4px solid rgba(0, 0, 0, 0.5);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

body.team-retro-active .btn-primary:active {
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  transform: translate(3px, 3px);
}

body.team-retro-active .btn-secondary {
  border-radius: 0;
  font-family: "Press Start 2P", monospace;
  font-size: 0.6rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

body.team-retro-active .btn-needle-dir {
  border-radius: 0;
  font-family: "Press Start 2P", monospace;
  font-size: 0.6rem;
  border-width: 4px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

body.team-retro-active .btn-needle-dir:active {
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  transform: translate(3px, 3px);
}

body.team-retro-active .timer-container {
  border-radius: 0;
  border: 3px solid rgba(126, 184, 218, 0.3);
}

body.team-retro-active .timer-bar {
  border-radius: 0;
  background: var(--team-left);
}

body.team-retro-active .timer-text {
  font-family: "Press Start 2P", monospace;
  font-size: 0.6rem;
}

body.team-retro-active .player-chip {
  border-radius: 0;
  font-family: "Press Start 2P", monospace;
  font-size: 0.5rem;
  border-width: 3px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

body.team-retro-active .overlay-card {
  border-radius: 0;
  border: 5px solid var(--team-left);
  box-shadow: 8px 8px 0 rgba(126, 184, 218, 0.2);
}

body.team-retro-active .overlay-card h2 {
  font-family: "Press Start 2P", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

body.team-retro-active .slider-track {
  border-radius: 0;
  border: 4px solid var(--team-left);
}

body.team-retro-active .needle-controls {
  font-family: "Press Start 2P", monospace;
}

body.team-retro-active input[type="text"] {
  border-radius: 0;
  border: 3px solid rgba(126, 184, 218, 0.3);
  font-family: "Press Start 2P", monospace;
  font-size: 0.7rem;
}

/* ==================== */
/* --- TEAM FANCY GAME VISUALS --- */
/* ==================== */

body.team-fancy-active .phase-banner {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  letter-spacing: 0.02em;
  border-radius: 16px;
}

body.team-fancy-active .banner-clue {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active .banner-role {
  font-family: "Playfair Display", Georgia, serif;
  font-style: normal;
  letter-spacing: 0.08em;
}

body.team-fancy-active .banner-sub {
  font-family: "Playfair Display", Georgia, serif;
}

body.team-fancy-active .score-value {
  font-family: "Playfair Display", Georgia, serif;
}

body.team-fancy-active .round-indicator {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active .clue-text {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  letter-spacing: 0.04em;
}

body.team-fancy-active .clue-display {
  border-radius: 16px;
  border: 1px solid var(--team-right);
}

body.team-fancy-active .btn-primary {
  border-radius: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active .btn-secondary {
  border-radius: 24px;
  font-family: "Playfair Display", Georgia, serif;
}

body.team-fancy-active .btn-needle-dir {
  border-radius: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active .timer-container {
  border-radius: 16px;
}

body.team-fancy-active .timer-bar {
  border-radius: 16px;
  background: linear-gradient(90deg, var(--team-right), #f0d060);
}

body.team-fancy-active .timer-text {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active .player-chip {
  border-radius: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active .overlay-card {
  border-radius: 24px;
  border: 1px solid var(--team-right);
}

body.team-fancy-active .overlay-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active input[type="text"] {
  border-radius: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

body.team-fancy-active .slider-track {
  border-radius: 24px;
  border-color: rgba(212, 175, 55, 0.2);
}

/* ==================== */
/* --- MOBILE --- */
/* ==================== */

@media (max-width: 600px) {
  .game-container {
    padding: 1rem 0;
    gap: 0.75rem;
  }

  .slider-knob {
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-top: -19px;
  }

  .slider-track {
    height: 32px;
  }

  .slider-label {
    font-size: 0.85rem;
  }

  .phase-banner {
    font-size: 1.05rem;
    padding: 0.6rem;
  }

  .clue-text {
    font-size: 1.3rem;
  }

  .oppose-buttons {
    flex-direction: column;
  }

  .btn-oppose {
    padding: 0.8rem 1.5rem;
  }

  #scoreboard {
    gap: 1.5rem;
  }

  .score-value {
    font-size: 1.6rem;
  }
}
