/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%; width: 100%;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
body {
  font-family: 'Bangers', cursive;
  background: #0a0503;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ===== VARIABLES ===== */
:root {
  --orange: #ff6a00;
  --gold: #ffa200;
  --amber: #ffcc00;
  --dark: #1a0e05;
  --darker: #0d0805;
  --panel-bg: rgba(20, 10, 4, 0.85);
  --panel-border: #c8860a;
  --glow-orange: rgba(255, 106, 0, 0.5);
  --glow-gold: rgba(255, 162, 0, 0.4);
  --red: #ff2a2a;
  --hole-size: min(28vw, 120px);
}

/* ===== SCREENS ===== */
#app { width: 100%; height: 100%; position: relative; overflow: hidden; }

/* ===== AUDIO TOGGLE CONTROLS ===== */
.audio-controls {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center;
  margin-top: 6px;
}
.audio-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--panel-border);
  background: var(--panel-bg);
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
  padding: 0;
}
.audio-btn.off, .audio-btn:active {
  opacity: 0.4;
}
.screen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.screen.active { opacity: 1; pointer-events: auto; z-index: 2; }

/* ===== BG GRADIENT (all screens) ===== */
.screen::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 15%, rgba(255,120,20,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(180,80,0,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0d0805 0%, #1a0e05 40%, #2d1508 100%);
  z-index: -1;
}

/* ===== MENU SCREEN ===== */
.menu-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  padding: 20px;
  width: 100%; max-width: 400px;
}
.menu-logo {
  width: 80%; max-width: 340px;
  filter: drop-shadow(0 4px 20px rgba(255,106,0,0.3));
  animation: logo-float 3s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.menu-highscore {
  font-size: clamp(18px, 5vw, 24px);
  color: var(--gold);
  display: flex; align-items: center; gap: 8px;
  text-shadow: 0 0 12px var(--glow-orange);
}
.whack-btn {
  background: none; border: none; cursor: pointer;
  padding: 0; width: 85%; max-width: 360px;
  transition: transform 0.1s;
  filter: drop-shadow(0 4px 16px rgba(255,106,0,0.4));
}
.whack-btn:active { transform: scale(0.95); }
.whack-btn img { width: 100%; display: block; }
.menu-link-btn {
  background: var(--panel-bg);
  border: 2px solid var(--panel-border);
  border-radius: 12px;
  color: var(--gold);
  font-family: 'Bangers', cursive;
  font-size: clamp(16px, 4vw, 20px);
  padding: 10px 32px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background 0.15s;
}
.menu-link-btn:active { background: rgba(200,134,10,0.2); }

/* ===== HUD ===== */
.hud {
  display: flex; justify-content: space-between; align-items: flex-start;
  width: 100%; padding: 10px 12px 0;
  position: relative; z-index: 5;
}
.hud-left, .hud-right { flex: 0 0 auto; }
.hud-center { flex: 1; text-align: center; }

/* Combo */
.combo-panel {
  background: var(--panel-bg);
  border: 2px solid var(--panel-border);
  border-radius: 10px;
  padding: 6px 10px 8px;
  min-width: 70px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.combo-panel.active {
  border-color: var(--orange);
  box-shadow: 0 0 14px var(--glow-orange), inset 0 0 8px rgba(255,106,0,0.15);
}
.combo-label { font-size: 10px; color: #997a55; letter-spacing: 0.1em; }
.combo-value {
  font-size: clamp(22px, 6vw, 30px);
  color: var(--gold);
  line-height: 1;
  transition: transform 0.15s, color 0.15s;
}
.combo-panel.active .combo-value { color: var(--amber); }
.combo-panel.bump .combo-value { transform: scale(1.35); }
.combo-bar {
  width: 100%; height: 4px;
  background: #2a1a0a; border-radius: 2px;
  margin-top: 4px; overflow: hidden;
}
.combo-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  transition: width 0.15s ease;
}

/* Score */
.score-panel { padding: 4px 0; }
.score-label { font-size: 10px; color: #997a55; letter-spacing: 0.1em; }
.score-value {
  font-size: clamp(28px, 8vw, 42px);
  color: #fff;
  text-shadow: 0 0 16px var(--glow-gold);
  line-height: 1.1;
}

/* Timer */
.timer-panel { position: relative; }
.timer-ring { width: 62px; height: 62px; position: relative; }
.timer-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.timer-ring-bg { fill: none; stroke: #2a1a0a; stroke-width: 5; }
.timer-ring-fg {
  fill: none; stroke: var(--gold); stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s linear, stroke 0.3s;
}
.timer-ring-fg.danger { stroke: var(--red); }
.timer-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  line-height: 1;
}
#timer-value { font-size: 22px; color: #fff; }
.timer-unit { font-size: 9px; color: #997a55; }
.timer-panel.danger #timer-value { color: var(--red); animation: timer-pulse 0.5s ease infinite; }
@keyframes timer-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Streak message */
.streak-msg {
  position: absolute;
  top: 90px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(20px, 6vw, 30px);
  color: var(--amber);
  text-shadow: 0 0 20px var(--glow-orange), 0 2px 4px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
}
.streak-msg.show {
  animation: streak-pop 0.8s ease forwards;
}
@keyframes streak-pop {
  0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
  20% { opacity: 1; transform: translateX(-50%) scale(1.2); }
  40% { transform: translateX(-50%) scale(1); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px) scale(1); }
}

/* ===== GAME GRID ===== */
.grid-wrapper {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 0 8px;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, var(--hole-size));
  grid-template-rows: repeat(3, calc(var(--hole-size) * 1.15));
  gap: 8px 6px;
  justify-content: center;
  perspective: 600px;
}

/* ===== HOLES ===== */
.hole {
  position: relative;
  width: var(--hole-size);
  height: calc(var(--hole-size) * 1.15);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hole-img {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
  pointer-events: none;
  transition: filter 0.15s;
}
.hole.active .hole-img {
  filter: brightness(1.3) drop-shadow(0 0 8px var(--glow-orange));
}

/* Tiger clipping area — ABOVE the hole image so tiger is fully visible */
.tiger-clip {
  position: absolute;
  bottom: 20%; left: 5%;
  width: 90%; height: 110%;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}
.tiger-img {
  position: absolute;
  bottom: 0; left: 50%;
  width: 80%;
  transform: translateX(-50%) translateY(110%);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  will-change: transform;
}
.hole.active .tiger-img {
  transform: translateX(-50%) translateY(-35%);
}
.hole.hit .tiger-img {
  transform: translateX(-50%) translateY(-35%) scale(0.85);
}
.hole.hiding .tiger-img {
  transform: translateX(-50%) translateY(110%);
  transition: transform 0.2s cubic-bezier(0.55, 0, 1, 0.45);
}

/* Hit flash */
.hole .hit-flash {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,200,0,0.4) 0%, transparent 70%);
  opacity: 0; z-index: 4;
  pointer-events: none;
  border-radius: 50%;
}
.hole.hit .hit-flash {
  animation: flash-burst 0.25s ease-out;
}
@keyframes flash-burst {
  0% { opacity: 1; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* Miss indicator */
.hole .miss-x {
  position: absolute; top: 20%; left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  color: var(--red);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.hole.missed .miss-x {
  animation: miss-fade 0.4s ease-out;
}
@keyframes miss-fade {
  0% { opacity: 1; transform: translateX(-50%) scale(1.3); }
  100% { opacity: 0; transform: translateX(-50%) scale(0.8) translateY(-10px); }
}

/* ===== GAME BOTTOM ===== */
.game-bottom {
  padding: 8px 0 16px;
  display: flex; justify-content: center;
  z-index: 5;
}
.multiplier-badge {
  background: var(--panel-bg);
  border: 2px solid var(--panel-border);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: clamp(16px, 4vw, 22px);
  color: var(--gold);
  display: flex; align-items: center; gap: 4px;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.multiplier-badge.boosted {
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--glow-orange);
  animation: badge-glow 1s ease infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 12px var(--glow-orange); }
  50% { box-shadow: 0 0 24px var(--glow-orange), 0 0 40px rgba(255,106,0,0.2); }
}

/* ===== HAMMER ===== */
.hammer-layer {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 50;
}
.hammer {
  position: absolute;
  width: 80px; height: 100px;
  pointer-events: none;
  transform-origin: 70% 90%;
  animation: hammer-swing 0.25s ease-out forwards;
}
.hammer img { width: 100%; height: 100%; object-fit: contain; }
@keyframes hammer-swing {
  0% { transform: rotate(-40deg) scale(0.9); opacity: 1; }
  40% { transform: rotate(10deg) scale(1.1); opacity: 1; }
  70% { transform: rotate(0deg) scale(1); opacity: 1; }
  100% { transform: rotate(0deg) scale(1); opacity: 0; }
}

/* ===== SCORE POPUPS ===== */
.popup-layer {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 45;
}
.score-popup {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: clamp(22px, 6vw, 32px);
  color: var(--amber);
  text-shadow: 0 0 12px var(--glow-orange), 0 2px 4px rgba(0,0,0,0.8);
  pointer-events: none;
  animation: popup-rise 0.7s ease-out forwards;
  white-space: nowrap;
}
@keyframes popup-rise {
  0% { opacity: 1; transform: translate(-50%, 0) scale(0.6); }
  30% { transform: translate(-50%, -10px) scale(1.15); }
  100% { opacity: 0; transform: translate(-50%, -50px) scale(1); }
}

/* ===== PARTICLE CANVAS ===== */
.particle-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 44;
  width: 100%; height: 100%;
}

/* ===== SCREEN SHAKE ===== */
#app.shake {
  animation: screen-shake 0.3s ease;
}
@keyframes screen-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px) rotate(-0.5deg); }
  40% { transform: translateX(4px) rotate(0.5deg); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

/* ===== GAME OVER SCREEN ===== */
.gameover-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  padding: 20px; width: 100%; max-width: 380px;
}
.gameover-tiger {
  width: 90px; height: 90px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255,106,0,0.3));
  animation: logo-float 2.5s ease-in-out infinite;
}
.gameover-title {
  font-size: clamp(32px, 10vw, 48px);
  color: var(--amber);
  text-shadow: 0 0 24px var(--glow-orange), 0 3px 0 #a06000;
}
.gameover-score-box {
  background: var(--panel-bg);
  border: 2px solid var(--panel-border);
  border-radius: 16px;
  padding: 16px 40px;
  text-align: center;
}
.gameover-score-label { font-size: 12px; color: #997a55; letter-spacing: 0.1em; }
.gameover-score {
  font-size: clamp(40px, 12vw, 60px);
  color: #fff;
  text-shadow: 0 0 20px var(--glow-gold);
  line-height: 1.1;
}
.gameover-best {
  font-size: 14px;
  color: var(--gold);
  margin-top: 4px;
}

.gameover-stats {
  display: flex; gap: 20px;
}
.stat { text-align: center; }
.stat-val {
  display: block;
  font-size: clamp(22px, 6vw, 28px);
  color: var(--gold);
}
.stat-label { font-size: 10px; color: #997a55; letter-spacing: 0.08em; }

.gameover-name-section {
  display: flex; flex-direction: column;
  gap: 10px; width: 100%;
}
.name-input {
  width: 100%;
  background: var(--panel-bg);
  border: 2px solid var(--panel-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Bangers', cursive;
  font-size: 18px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.2s;
}
.name-input::placeholder { color: #665540; }
.name-input:focus { border-color: var(--orange); }

.gameover-actions {
  display: flex; gap: 10px; width: 100%;
}

/* Action buttons */
.action-btn {
  flex: 1;
  font-family: 'Bangers', cursive;
  font-size: clamp(16px, 4vw, 20px);
  letter-spacing: 0.06em;
  padding: 12px 20px;
  border: 2px solid var(--panel-border);
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.1s, background 0.15s;
}
.action-btn:active { transform: scale(0.96); }
.action-btn.orange {
  background: linear-gradient(180deg, var(--orange), #cc5500);
  color: #fff;
  border-color: var(--orange);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.action-btn.gold {
  background: linear-gradient(180deg, var(--gold), #cc8200);
  color: #1a0e05;
  border-color: var(--gold);
}
.action-btn.dark {
  background: var(--panel-bg);
  color: var(--gold);
}

/* ===== LEADERBOARD ===== */
.lb-content {
  width: 100%; max-width: 400px;
  height: 100%;
  display: flex; flex-direction: column;
  padding: 16px;
}
.lb-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.back-btn {
  background: none; border: none;
  color: var(--gold);
  font-family: 'Bangers', cursive;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}
.lb-title {
  font-size: clamp(24px, 7vw, 32px);
  color: var(--amber);
  text-shadow: 0 0 12px var(--glow-orange);
}

.lb-tabs {
  display: flex; gap: 0; margin-bottom: 12px;
  border-radius: 10px; overflow: hidden;
  border: 2px solid var(--panel-border);
}
.lb-tab {
  flex: 1;
  font-family: 'Bangers', cursive;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 10px;
  background: var(--panel-bg);
  color: #997a55;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lb-tab.active {
  background: rgba(200,134,10,0.2);
  color: var(--gold);
}

.lb-panel {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lb-panel.hidden { display: none; }

.lb-list { display: flex; flex-direction: column; gap: 4px; }

.lb-row {
  display: flex; align-items: center;
  background: var(--panel-bg);
  border: 1px solid rgba(200,134,10,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  gap: 12px;
  transition: background 0.15s;
}
.lb-row.current {
  border-color: var(--orange);
  background: rgba(255,106,0,0.1);
}
.lb-row.top-1 { border-color: #ffd700; background: rgba(255,215,0,0.08); }
.lb-row.top-2 { border-color: #c0c0c0; background: rgba(192,192,192,0.06); }
.lb-row.top-3 { border-color: #cd7f32; background: rgba(205,127,50,0.06); }

.lb-rank {
  width: 32px; text-align: center;
  font-size: 18px; color: #997a55;
}
.lb-row.top-1 .lb-rank { color: #ffd700; }
.lb-row.top-2 .lb-rank { color: #c0c0c0; }
.lb-row.top-3 .lb-rank { color: #cd7f32; }

.lb-name {
  flex: 1;
  font-size: 16px;
  color: #ddd;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lb-row.current .lb-name { color: var(--amber); }

.lb-score {
  font-size: 18px;
  color: var(--gold);
}

.lb-play-btn { margin-top: 12px; flex: none; }

.lb-empty {
  text-align: center;
  color: #665540;
  padding: 40px 20px;
  font-size: 18px;
}

/* ===== COFFEE / DONATE ===== */
.coffee-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Small HUD button (below combo) */
.coffee-btn-small {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  width: auto;
  margin-top: 8px;
  padding: 6px 10px 5px;
  border-radius: 10px;
  border: 2px solid #c8860a;
  background: rgba(20, 10, 4, 0.85);
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.coffee-btn-small .coffee-icon { width: 22px; height: 22px; }
.coffee-btn-small::after {
  content: 'BUY ME A COFFEE';
  font-family: 'Bangers', cursive;
  font-size: 7px;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}
.coffee-btn-small:active { transform: scale(0.9); }
.coffee-btn-small:hover {
  box-shadow: 0 0 10px var(--glow-gold);
}

/* Big game-over CTA */
.coffee-btn-big {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 14px 24px;
  margin-top: 4px;
  border-radius: 12px;
  border: 2px solid var(--amber);
  background: linear-gradient(180deg, var(--gold), #cc8200);
  color: #1a0e05;
  font-family: 'Bangers', cursive;
  font-size: clamp(17px, 4.5vw, 22px);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(255,162,0,0.3);
}
.coffee-btn-big:active { transform: scale(0.96); }
.coffee-btn-big:hover {
  box-shadow: 0 4px 24px rgba(255,162,0,0.5);
}
.coffee-btn-big .coffee-icon { width: 24px; height: 24px; stroke: #1a0e05; }

/* Donate modal */
.donate-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.donate-modal.hidden { display: none !important; }
.donate-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.donate-card {
  position: relative;
  background: linear-gradient(180deg, #1e1008, #120a04);
  border: 2px solid var(--panel-border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  width: 100%; max-width: 340px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(200,134,10,0.15);
  animation: donate-pop 0.25s ease-out;
}
@keyframes donate-pop {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
.donate-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none;
  color: #997a55; font-size: 28px;
  cursor: pointer; line-height: 1;
}
.donate-close:hover { color: var(--gold); }
.donate-coffee-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px var(--glow-gold));
}
.donate-title {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  color: var(--amber);
  text-shadow: 0 0 12px var(--glow-orange);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.donate-subtitle {
  font-family: 'Bangers', cursive;
  font-size: 14px;
  color: #997a55;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.donate-address-box {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(200,134,10,0.3);
  border-radius: 10px;
  padding: 10px 12px;
}
.donate-address {
  flex: 1;
  font-family: monospace;
  font-size: 10.5px;
  color: var(--gold);
  word-break: break-all;
  text-align: left;
  line-height: 1.4;
  user-select: all;
  -webkit-user-select: all;
}
.donate-copy-btn {
  flex-shrink: 0;
  font-family: 'Bangers', cursive;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, var(--gold), #cc8200);
  color: #1a0e05;
  cursor: pointer;
  transition: transform 0.1s;
}
.donate-copy-btn:active { transform: scale(0.92); }
.donate-copied {
  margin-top: 10px;
  font-family: 'Bangers', cursive;
  font-size: 15px;
  color: #4cff4c;
  letter-spacing: 0.08em;
  animation: donate-pop 0.2s ease-out;
}

/* ===== UTILITIES ===== */
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-height: 640px) {
  :root { --hole-size: min(24vw, 100px); }
  .hud { padding: 6px 10px 0; }
  .timer-ring { width: 50px; height: 50px; }
  #timer-value { font-size: 18px; }
  .combo-panel { padding: 4px 8px 6px; }
  .combo-value { font-size: 22px; }
  .game-grid { gap: 4px; }
  .streak-msg { top: 70px; }
}
@media (min-width: 500px) {
  :root { --hole-size: 130px; }
}
