/* ─────────────────────────────────────────────
   TACO CHAT BOUC FROMAGE PIZZA — Global Styles
   ───────────────────────────────────────────── */

/* ── Fonts & Reset ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-1: #0d0d1a;
  --bg-2: #13132b;
  --accent-1: #7c3aed;
  --accent-2: #a855f7;
  --accent-3: #06b6d4;
  --accent-hot: #f97316;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --text-primary: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --card-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --glow-purple: 0 0 30px rgba(124,58,237,0.4);
  --glow-cyan: 0 0 30px rgba(6,182,212,0.4);
  --glow-orange: 0 0 40px rgba(249,115,22,0.6);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html, body {
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--bg-1);
  overflow-x: hidden;
}

/* ── Background gradient ───────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(124,58,237,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(6,182,212,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(168,85,247,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Glass card ────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.95); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.6);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--accent-3), #0891b2);
  color: white;
  box-shadow: 0 4px 20px rgba(6,182,212,0.3);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.5);
}
.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.hidden { display: none !important; }

/* ── Input fields ──────────────────────────── */
.text-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s;
}
.text-input::placeholder { color: var(--text-dim); }
.text-input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.2);
  background: rgba(255,255,255,0.1);
}
.code-input {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 2px 0 rgba(0,0,0,0.3);
}

/* ─────────────────────────────────────────────
   LOBBY PAGE
   ───────────────────────────────────────────── */
.lobby-page { position: relative; }

/* Floating emoji background */
.bg-emojis {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bg-emojis span {
  position: absolute;
  font-size: clamp(1.5rem, 4vw, 3rem);
  opacity: 0.06;
  animation: floatEmoji linear infinite;
  user-select: none;
}
.bg-emojis span:nth-child(1)  { left: 5%;  animation-duration: 18s; animation-delay: 0s;    font-size: 3.5rem; }
.bg-emojis span:nth-child(2)  { left: 15%; animation-duration: 22s; animation-delay: -3s;   }
.bg-emojis span:nth-child(3)  { left: 28%; animation-duration: 16s; animation-delay: -8s;   }
.bg-emojis span:nth-child(4)  { left: 42%; animation-duration: 24s; animation-delay: -1s;   font-size: 2.5rem; }
.bg-emojis span:nth-child(5)  { left: 55%; animation-duration: 19s; animation-delay: -5s;   }
.bg-emojis span:nth-child(6)  { left: 68%; animation-duration: 21s; animation-delay: -12s;  font-size: 4rem; }
.bg-emojis span:nth-child(7)  { left: 78%; animation-duration: 17s; animation-delay: -7s;   }
.bg-emojis span:nth-child(8)  { left: 88%; animation-duration: 23s; animation-delay: -2s;   }
.bg-emojis span:nth-child(9)  { left: 10%; animation-duration: 20s; animation-delay: -15s;  }
.bg-emojis span:nth-child(10) { left: 35%; animation-duration: 25s; animation-delay: -9s;   }
.bg-emojis span:nth-child(11) { left: 50%; animation-duration: 18s; animation-delay: -4s;   font-size: 2rem; }
.bg-emojis span:nth-child(12) { left: 63%; animation-duration: 22s; animation-delay: -11s;  }
.bg-emojis span:nth-child(13) { left: 75%; animation-duration: 16s; animation-delay: -6s;   }
.bg-emojis span:nth-child(14) { left: 90%; animation-duration: 20s; animation-delay: -14s;  }
.bg-emojis span:nth-child(15) { left: 22%; animation-duration: 26s; animation-delay: -3s;   font-size: 3rem; }

@keyframes floatEmoji {
  0%   { transform: translateY(110vh) rotate(0deg); }
  100% { transform: translateY(-10vh) rotate(360deg); }
}

.lobby-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Logo */
.lobby-header { text-align: center; }
.game-logo { margin-bottom: 8px; }
.logo-emojis {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 20px rgba(168,85,247,0.5));
  animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-subtitle {
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--accent-3);
  letter-spacing: 0.05em;
}
.tagline { color: var(--text-muted); font-size: 1rem; margin-top: 8px; }

/* Name card */
.name-card { padding: 24px; }
.field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* Actions */
.lobby-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 600px) {
  .lobby-actions { grid-template-columns: 1fr; }
  .divider-or { display: none; }
}
.action-card {
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.action-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow), var(--glow-purple); }
.action-icon { font-size: 2.5rem; }
.action-card h2 { font-size: 1.2rem; font-weight: 700; }
.action-card p { font-size: 0.85rem; color: var(--text-muted); }
.divider-or {
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-or span {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}
.join-row { display: flex; gap: 10px; }
.join-row .text-input { flex: 1; }

.error-banner {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  color: #fca5a5;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Rules card */
.rules-card { padding: 20px 24px; cursor: pointer; }
.rules-card summary {
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  list-style: none;
}
.rules-card summary::-webkit-details-marker { display: none; }
.rules-content { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.rule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.rule-emoji { font-size: 1.2rem; }

/* ─────────────────────────────────────────────
   GAME PAGE
   ───────────────────────────────────────────── */
.game-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.screen { display: none; }
.screen.active { display: flex; flex-direction: column; min-height: 100vh; }

/* ── Lobby/waiting room ─────────────────────── */
#screen-lobby {
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lobby-room-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 480px;
  z-index: 1;
}
.room-code-display {
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rc-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.rc-code {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(168,85,247,0.5));
}
.rc-hint { font-size: 0.85rem; color: var(--text-muted); }
.rc-url { font-size: 0.8rem; color: var(--accent-3); font-weight: 600; }

.players-list-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.players-list-card h2 { font-size: 1.1rem; font-weight: 700; }
.player-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.player-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}
.player-list-item .player-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}
.player-host-badge {
  margin-left: auto;
  font-size: 0.7rem;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 700;
}
.waiting-msg { text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* ── Game header ─────────────────────────────── */
.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-logo { font-size: 1.4rem; }
.sequence-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.seq-word {
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--accent-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.room-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── Players row ──────────────────────────────── */
.players-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--glass-border);
}
.player-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: var(--glass-bg);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}
.player-chip.active {
  border-color: var(--accent-2);
  background: rgba(168,85,247,0.15);
  box-shadow: 0 0 16px rgba(168,85,247,0.4);
}
.player-chip.me {
  border-color: var(--accent-3);
  background: rgba(6,182,212,0.1);
}
.player-chip.active.me {
  border-color: var(--accent-green);
  background: rgba(16,185,129,0.15);
  box-shadow: 0 0 16px rgba(16,185,129,0.4);
  animation: myTurnPulse 1s ease-in-out infinite;
}
@keyframes myTurnPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(16,185,129,0.4); }
  50%       { box-shadow: 0 0 30px rgba(16,185,129,0.8); }
}
.chip-count {
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── Pile area ────────────────────────────────── */
.pile-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  position: relative;
}
.pile-zone {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pile-card {
  width: clamp(160px, 30vw, 220px);
  height: clamp(220px, 40vw, 300px);
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border: 2px solid rgba(168,85,247,0.4);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-purple);
  cursor: default;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pile-card.empty {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.pile-card.card-played {
  animation: cardPlayed 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cardPlayed {
  0%   { transform: translateY(-40px) scale(0.8) rotate(-5deg); opacity: 0; }
  100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
}
.pile-card.card-match {
  animation: cardMatch 0.5s ease;
}
@keyframes cardMatch {
  0%, 100% { transform: scale(1); }
  25%  { transform: scale(1.15) rotate(-3deg); }
  75%  { transform: scale(1.15) rotate(3deg); }
}
.pile-emoji {
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.pile-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Status message */
.status-msg {
  text-align: center;
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-muted);
  max-width: 500px;
  min-height: 24px;
  transition: all 0.3s;
  font-weight: 500;
}
.status-msg.highlight { color: var(--accent-2); font-weight: 700; }

/* My hand area */
.my-hand-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-hand-inner {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 12px 28px;
}
.my-card-count {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.my-card-label { font-size: 0.85rem; color: var(--text-muted); }

/* ── Keyboard hint bar ────────────────────────── */
.keyboard-hint {
  padding: 10px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--glass-border);
}

/* ─────────────────────────────────────────────
   OVERLAYS
   ───────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlayIn 0.3s ease;
}
.overlay.hidden { display: none; }
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Slap overlay ─────────────────────────────── */
.slap-overlay {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.slap-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: slapContentIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slapContentIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.slap-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--accent-hot);
  text-shadow: 0 0 30px rgba(249,115,22,0.8);
  animation: slapTitlePulse 0.5s ease infinite alternate;
}
@keyframes slapTitlePulse {
  from { text-shadow: 0 0 20px rgba(249,115,22,0.6); }
  to   { text-shadow: 0 0 50px rgba(249,115,22,1); }
}
.slap-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 600;
}
.slap-letter {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 0 60px rgba(249,115,22,0.8), 0 0 120px rgba(249,115,22,0.4);
  animation: letterPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes letterPop {
  from { transform: scale(0) rotate(-20deg); }
  to   { transform: scale(1) rotate(0deg); }
}
.slap-hint {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ── Special overlay ──────────────────────────── */
.special-overlay {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}
.special-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: specialIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: center;
}
@keyframes specialIn {
  from { transform: scale(0.2) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.special-animal {
  font-size: clamp(4rem, 15vw, 8rem);
  animation: animalBounce 0.6s ease infinite alternate;
  filter: drop-shadow(0 0 30px rgba(168,85,247,0.6));
}
@keyframes animalBounce {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-15px) scale(1.05); }
}
.special-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.special-instruction {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   SCOREBOARD
   ───────────────────────────────────────────── */
.scoreboard {
  margin-top: 10px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  overflow-x: auto;
}
.scoreboard-table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  text-align: left;
}
.scoreboard-table th {
  padding: 8px 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.scoreboard-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}
.scoreboard-table tr:last-child td {
  border-bottom: none;
}
.scoreboard-table tr.winner-row td {
  color: var(--accent-green);
  font-weight: 700;
}
.stat-val {
  font-family: monospace;
  font-size: 1.1rem;
}


/* ─────────────────────────────────────────────
   NEW MINI-GAMES (Aimlab, Sudoku, Minesweeper, Sutom)
   ───────────────────────────────────────────── */
.aimlab-container {
  width: min(90vw, 300px);
  height: 300px;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}
.aimlab-target {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent-red), #991b1b);
  border: 2px solid white;
  cursor: pointer;
  transform: translate(-50%, -50%);
  animation: targetPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes targetPop {
  0% { transform: translate(-50%, -50%) scale(0); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.sudoku-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: white;
  padding: 4px;
  border-radius: 8px;
}
.sudoku-grid input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid #ccc;
  outline: none;
}
.sudoku-grid input:focus { border-color: var(--accent-1); }
.sudoku-grid input[readonly] { background: #eee; color: #555; }
.sudoku-grid .border-r { border-right: 3px solid #333 !important; }
.sudoku-grid .border-b { border-bottom: 3px solid #333 !important; }

.minesweeper-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.minesweeper-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4b5563, #374151);
  border: 2px solid #6b7280;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.minesweeper-btn.revealed {
  background: #222;
  border-color: #333;
  cursor: default;
}
.minesweeper-btn.revealed[data-num="1"] { color: #3b82f6; }
.minesweeper-btn.revealed[data-num="2"] { color: #10b981; }
.minesweeper-btn.revealed[data-num="3"] { color: #ef4444; }
.minesweeper-btn.revealed[data-num="4"] { color: #8b5cf6; }
.minesweeper-btn.flagged {
  /* color handled by emoji or style, just keep background normal */
}
.minesweeper-btn.mine {
  background: var(--accent-red);
}

.sutom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.sutom-cell {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  border-radius: 4px;
}
.sutom-cell.correct { background: var(--accent-green); border-color: var(--accent-green); }
.sutom-cell.present { background: var(--accent-hot); border-color: var(--accent-hot); }
.sutom-cell.absent { background: #374151; border-color: #374151; }

.special-responded {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 20px;
}

/* Timer bar */
.special-timer-bar {
  width: clamp(200px, 50vw, 320px);
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.special-timer-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-hot));
  border-radius: 3px;
  transform-origin: left;
  animation: timerDrain 3s linear forwards;
}
@keyframes timerDrain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* ── Game Over overlay ────────────────────────── */
.gameover-overlay { background: rgba(0,0,0,0.92); backdrop-filter: blur(12px); }
.gameover-content {
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: gameoverIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 400px;
  width: 90%;
}
@keyframes gameoverIn {
  from { transform: scale(0.3) rotate(10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.gameover-trophy {
  font-size: 5rem;
  animation: trophyFloat 2s ease-in-out infinite;
}
@keyframes trophyFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}
.gameover-content h2 { font-size: 2rem; font-weight: 900; }
.gameover-content p { color: var(--text-muted); font-size: 1rem; }

/* ── Screen flash effects ─────────────────────── */
@keyframes flashGreen {
  0%   { box-shadow: inset 0 0 0 5px rgba(16,185,129,0); }
  30%  { box-shadow: inset 0 0 0 5px rgba(16,185,129,0.8); }
  100% { box-shadow: inset 0 0 0 5px rgba(16,185,129,0); }
}
@keyframes flashRed {
  0%   { box-shadow: inset 0 0 0 5px rgba(239,68,68,0); }
  30%  { box-shadow: inset 0 0 0 5px rgba(239,68,68,0.8); }
  100% { box-shadow: inset 0 0 0 5px rgba(239,68,68,0); }
}
.flash-green { animation: flashGreen 0.6s ease; }
.flash-red   { animation: flashRed 0.6s ease; }

/* ── Toast notifications ──────────────────────── */
.toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 200;
  pointer-events: none;
}
.toast {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, toastOut 0.4s ease 2.5s forwards;
}
@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes toastOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.toast-win  { background: linear-gradient(135deg, var(--accent-green), #059669); color: white; box-shadow: 0 4px 20px rgba(16,185,129,0.5); }
.toast-lose { background: linear-gradient(135deg, var(--accent-red), #b91c1c); color: white; box-shadow: 0 4px 20px rgba(239,68,68,0.5); }
.toast-info { background: linear-gradient(135deg, var(--accent-1), var(--accent-2)); color: white; box-shadow: 0 4px 20px rgba(124,58,237,0.5); }

/* ─────────────────────────────────────────────
   SETTINGS PANEL
   ───────────────────────────────────────────── */
.settings-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.settings-card h2 { font-size: 1rem; font-weight: 700; }
.setting-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.setting-row label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.setting-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.setting-control input[type="range"] {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  outline: none;
}
.setting-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(124,58,237,0.5);
}
.setting-value {
  min-width: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent-2);
}

/* ─────────────────────────────────────────────
   CHALLENGE OVERLAYS
   ───────────────────────────────────────────── */
.challenge-overlay {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
}
.challenge-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: specialIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 90%;
}
.challenge-relative {
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  padding-top: 60px;
}
.challenge-top-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.challenge-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 4px 12px rgba(168,85,247,0.5));
  animation: animalBounce 0.6s ease infinite alternate;
}
.challenge-label {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.challenge-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Challenge timer bar */
.challenge-timer-bar {
  width: clamp(200px, 60vw, 360px);
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}
.challenge-timer-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-hot));
  border-radius: 3px;
  transform-origin: left;
}
.timer-3s  { animation: timerDrain 3s linear forwards; }
.timer-5s  { animation: timerDrain 5s linear forwards; }
.timer-8s  { animation: timerDrain 8s linear forwards; }
.timer-12s { animation: timerDrain 12s linear forwards; }

/* Challenge input */
.challenge-input {
  width: min(300px, 80vw);
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  outline: none;
  transition: all 0.2s;
}
.challenge-input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(168,85,247,0.3);
  background: rgba(255,255,255,0.12);
}
.challenge-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Math expression */
.challenge-expression {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: white;
  text-shadow: 0 0 30px rgba(249,115,22,0.6);
}

/* Word display with decoys */
.challenge-word-display {
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
}
.word-decoy {
  color: var(--text-dim);
  opacity: 0.4;
}
.word-target {
  color: white;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(168,85,247,0.8);
  border-bottom: 3px solid var(--accent-2);
  padding-bottom: 2px;
  animation: wordPulse 1s ease-in-out infinite;
}
@keyframes wordPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(168,85,247,0.6); }
  50%       { text-shadow: 0 0 40px rgba(168,85,247,1); }
}

/* Click test button */
.clicktest-btn {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--accent-hot);
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(239,68,68,0.2));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.05s;
  box-shadow: 0 0 40px rgba(249,115,22,0.4), inset 0 0 30px rgba(249,115,22,0.1);
  user-select: none;
  -webkit-user-select: none;
}
.clicktest-btn:hover { box-shadow: 0 0 60px rgba(249,115,22,0.7); }
.clicktest-btn:active { transform: scale(0.9); }
.ct-count {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-hot);
  line-height: 1;
}
.ct-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Timing wheel */
#timing-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(124,58,237,0.3);
}
.timing-result {
  font-size: 1.2rem;
  font-weight: 700;
  min-height: 30px;
}

/* Click zone button (same as before but updated) */
.special-clickable {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--accent-2);
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.3));
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(168,85,247,0.4), inset 0 0 30px rgba(168,85,247,0.1);
  position: absolute;
  overflow: hidden;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.special-clickable:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 60px rgba(168,85,247,0.7); }
.special-clickable:active { transform: translate(-50%, -50%) scale(0.85); }
.special-clickable.clicked {
  border-color: var(--accent-green);
  background: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(6,182,212,0.3));
  box-shadow: 0 0 40px rgba(16,185,129,0.6);
  pointer-events: none;
}

.sandbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}
.sandbox-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  color: white;
}
.sandbox-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}
.sandbox-btn-emoji {
  font-size: 2rem;
}
.sandbox-btn-name {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ── STROOP ────────────────────────────────── */
.stroop-btn {
  padding: 15px 25px;
  border-radius: 12px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.stroop-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.2);
}
.stroop-btn:active {
  transform: scale(0.95);
}

/* ── SIMON ─────────────────────────────────── */
.simon-btn {
  aspect-ratio: 1;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s;
}
.simon-btn.lit {
  background: rgba(255,255,255,0.3);
  border-color: white;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}
.simon-btn:active {
  transform: scale(0.95);
}

/* ── ODD ONE OUT ───────────────────────────── */
.oddoneout-btn {
  aspect-ratio: 1;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.1s;
}
.oddoneout-btn:hover {
  transform: scale(1.2);
}
.oddoneout-btn:active {
  transform: scale(0.9);
}

/* ── ESTIMATION ────────────────────────────── */
.floating-emoji {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
}

/* ═══════════════════════════════════════════
   BANK MODE — New UI Styles
   ═══════════════════════════════════════════ */

/* ── Bank Display ───────────────────────── */
.bank-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.bank-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.bank-count {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
@keyframes bankPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.bank-pop { animation: bankPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* ── Game Mode Badge ────────────────────── */
.game-mode-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── Players Bank Row ───────────────────── */
.players-bank-row {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  overflow-x: auto;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
  justify-content: center;
}
.player-chip-bank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 2px solid transparent;
  background: var(--glass-bg);
  min-width: 90px;
  max-width: 140px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.player-chip-bank.me {
  border-color: var(--accent-3);
  background: rgba(6,182,212,0.1);
  box-shadow: 0 0 16px rgba(6,182,212,0.2);
}
.player-chip-bank.eliminated {
  opacity: 0.4;
  filter: grayscale(1);
  border-style: dashed;
}
.chip-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}
.chip-points {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent-hot);
  line-height: 1;
}
.chip-progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.chip-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease, background 0.3s;
}

/* ── Round Result Banner ────────────────── */
.round-result-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: bannerIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 90vw;
  pointer-events: none;
}
@keyframes bannerIn {
  from { opacity:0; transform:translateX(-50%) translateY(-20px) scale(0.8); }
  to   { opacity:1; transform:translateX(-50%) translateY(0) scale(1); }
}
.banner-win  { background:linear-gradient(135deg,#065f46,#10b981); border:2px solid #34d399; color:#fff; }
.banner-lose { background:linear-gradient(135deg,#7f1d1d,#ef4444); border:2px solid #f87171; color:#fff; }
.banner-info { background:linear-gradient(135deg,#1e1b4b,#7c3aed); border:2px solid #a78bfa; color:#fff; }

/* ── Mode Selector Buttons ──────────────── */
.mode-selector { display:flex; gap:6px; flex-wrap:wrap; }
.mode-btn {
  padding: 8px 14px;
  border-radius: 50px;
  border: 2px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.mode-btn.active {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-color: var(--accent-2);
  color: white;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.mode-btn:hover:not(.active) { border-color:var(--accent-2); color:var(--text-primary); }

/* ── Pick Game Overlay ──────────────────── */
.pick-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px);
  z-index: 800;
}
.pick-content {
  padding: 32px;
  max-width: 560px;
  width: 95vw;
  text-align: center;
}
.pick-title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.pick-subtitle { color:var(--text-muted); font-size:0.9rem; margin-bottom:24px; }
.pick-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 500px) { .pick-games-grid { grid-template-columns: repeat(3,1fr); } }
.pick-game-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 6px;
  border-radius: 16px;
  border: 2px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}
.pick-game-btn:hover {
  border-color: var(--accent-2);
  background: rgba(168,85,247,0.15);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(168,85,247,0.4);
}
.pick-game-btn:active { transform: scale(0.95); }
.pick-game-emoji { font-size: 2rem; line-height: 1; }
.pick-game-name { font-size:0.62rem; font-weight:700; text-align:center; color:var(--text-muted); line-height:1.2; }

/* ── Waiting Pick Overlay ───────────────── */
.waiting-pick-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 700;
}
.waiting-pick-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
}
.waiting-spinner { font-size: 4rem; animation: waitSpin 2s linear infinite; }
@keyframes waitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.waiting-pick-msg { font-size:1.2rem; font-weight:700; color:var(--text-primary); }

/* ── Stroop button ──────────────────────── */
.stroop-btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 90px;
}
.stroop-btn:hover { background:rgba(255,255,255,0.1); border-color:var(--accent-2); transform:scale(1.05); }
.stroop-btn:active { transform: scale(0.95); }
