:root {
  --bg: #0f1117; --bg2: #1a1d27; --bg3: #22263a;
  --border: #2e3250; --text: #e2e8f0; --muted: #8892b0;
  --orange: #f97316; --blue: #3b82f6; --green: #22c55e;
  --red: #ef4444; --yellow: #eab308; --purple: #a855f7;
  --radius: 12px; --shadow: 0 4px 24px rgba(0,0,0,.4);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', sans-serif; min-height: 100vh; position: relative; }
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(249,115,22,.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(59,130,246,.05) 0%, transparent 50%);
  animation: bgShift 20s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes bgShift {
  0%   { opacity: .6; transform: scale(1) translate(0,0); }
  50%  { opacity: 1;  transform: scale(1.05) translate(2%,1%); }
  100% { opacity: .7; transform: scale(1) translate(-2%,-1%); }
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav { background: var(--bg2); border-bottom: 1px solid var(--border);
      display: flex; align-items: center; padding: 0 24px; height: 60px; gap: 8px; position: sticky; top: 0; z-index: 100; }
.nav-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; color: var(--orange); margin-right: 12px; text-decoration: none; }
.nav-brand:hover { text-decoration: none; opacity: .85; }
.nav-logo { height: 36px !important; width: auto !important; max-width: 110px !important; max-height: 36px !important; object-fit: contain !important; display: block !important; flex-shrink: 0; }
.nav-link { padding: 6px 14px; border-radius: 8px; color: var(--muted); font-size: .9rem; transition: .2s; }
.nav-link:hover, .nav-link.active { background: var(--bg3); color: var(--text); text-decoration: none; }
.nav-spacer { flex: 1; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-btn { background: var(--bg3); border: 1px solid var(--border); color: var(--text);
            padding: 5px 12px; border-radius: 8px; cursor: pointer; font-size: .85rem; }
.lang-btn:hover { background: var(--border); }
.notif-btn { position: relative; background: none; border: none; cursor: pointer;
             color: var(--muted); font-size: 1.2rem; padding: 6px; }
.notif-badge { position: absolute; top: 0; right: 0; background: var(--red);
               color: #fff; font-size: .65rem; width: 16px; height: 16px;
               border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.notif-dropdown { position: absolute; top: 52px; right: 16px; width: 360px;
                  background: var(--bg2); border: 1px solid var(--border);
                  border-radius: var(--radius); box-shadow: var(--shadow); z-index: 200;
                  display: none; max-height: 420px; overflow-y: auto; }
.notif-dropdown.open { display: block; }
.notif-header { padding: 12px 16px; border-bottom: 1px solid var(--border);
                display: flex; justify-content: space-between; align-items: center;
                font-weight: 600; font-size: .9rem; }
.notif-item { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .85rem; line-height: 1.5; }
.notif-item.unread { background: rgba(59,130,246,.08); }
.notif-empty { padding: 24px; text-align: center; color: var(--muted); }

/* LAYOUT */
.container { max-width: 1400px; margin: 0 auto; padding: 32px 20px; }
/* Utility — toggled by mobile.css */
.mobile-only { display: none; }
.page-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.page-sub { color: var(--muted); margin-bottom: 28px; font-size: .95rem; }

/* CARDS */
.card { background: var(--bg2); border: 1px solid var(--border);
        border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card-title { font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px;
       border-radius: 8px; border: none; cursor: pointer; font-size: .95rem;
       font-weight: 600; transition: .2s; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #ea6c0a; }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { background: #16a34a; }
.btn-red    { background: var(--red); color: #fff; }
.btn-red:hover { background: #dc2626; }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: #ca8a04; }
.btn-challenge { background: rgba(168,85,247,.15); color: var(--purple); border: 1px solid var(--purple); border-radius: 6px; cursor: pointer; font-weight: 600; }
.btn-challenge:hover { background: rgba(168,85,247,.3); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #ea6c0a; }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: #9333ea; }
.img-tab.active { background: var(--orange) !important; color: #fff !important; border-color: var(--orange) !important; }
.multi-modal { position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  z-index: 200; background: var(--bg); overflow-y: auto; margin: 0; padding: 16px; border-radius: 0; }
#zoom-canvas { image-rendering: crisp-edges; }
#draw-canvas { image-rendering: crisp-edges; touch-action: none; }
#draw-wrap { user-select: none; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* UPLOAD */
.upload-zone { border: 2px dashed var(--border); border-radius: var(--radius);
               padding: 60px 24px; text-align: center; cursor: pointer; transition: .2s; }
.upload-zone:hover, .upload-zone.drag { border-color: var(--orange); background: rgba(249,115,22,.05); }
.upload-icon { font-size: 3rem; margin-bottom: 12px; }
.upload-text { color: var(--muted); margin-bottom: 16px; }
#file-input { display: none; }

/* SUMMARY STATS */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.stat-card { background: var(--bg3); border-radius: 10px; padding: 16px; text-align: center; }
.stat-val { font-size: 2rem; font-weight: 700; }
.stat-label { color: var(--muted); font-size: .85rem; margin-top: 4px; }
.orange { color: var(--orange); } .blue { color: var(--blue); } .green { color: var(--green); }

/* IMAGES */
.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.img-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.img-wrap img { width: 100%; display: block; }
.img-label { padding: 8px 12px; font-size: .85rem; color: var(--muted); background: var(--bg3); }

/* GAME */
.game-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  grid-template-rows: 1fr;
  gap: 20px;
}
.game-canvas-col { display: flex; flex-direction: column; min-height: 0; }
.game-side { display: flex; flex-direction: column; gap: 12px; }

/* Score + AI label side by side, equal size */
.score-streak-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

/* Buttons: 3-column grid so 6 buttons fit in 2 compact rows */
.game-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
/* When JS shows them (sets display:flex inline), override to grid */
#game-btn-wrap[style*="flex"] {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.game-btns .btn-lg {
  padding: 11px 6px;
  font-size: .88rem;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

.canvas-wrap { position: relative; border-radius: var(--radius); overflow: hidden;
               border: 1px solid var(--border); background: #000; }
#game-canvas { width: 100%; display: block; cursor: crosshair; }
.label-display { background: var(--bg3); border-radius: 10px; padding: 16px; }
.label-name { font-size: 1.4rem; font-weight: 700; color: var(--yellow); margin: 4px 0; word-break: break-word; }
.conf-bar-wrap { background: var(--bg); border-radius: 4px; height: 6px; margin-top: 8px; }
.conf-bar { background: var(--blue); height: 6px; border-radius: 4px; }
.score-display { background: var(--bg3); border-radius: 10px; padding: 16px; text-align: center; }
.score-val { font-size: 2.5rem; font-weight: 700; color: var(--orange); }
.score-anim { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
              font-size: 3rem; font-weight: 900; pointer-events: none;
              animation: floatUp 1.2s ease-out forwards; z-index: 999; }
@keyframes floatUp { 0%{opacity:1;transform:translate(-50%,-60%)} 100%{opacity:0;transform:translate(-50%,-160%)} }
/* Brand autocomplete dropdown */
.brand-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg2);
  border: 1px solid var(--blue);
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 300;
  max-height: 240px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}
.brand-suggestion {
  padding: 10px 14px;
  cursor: pointer;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.brand-suggestion:last-child { border-bottom: none; }
.brand-suggestion:hover,
.brand-suggestion.active { background: var(--bg3); }

.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.class-btn { background: var(--bg3); border: 1px solid var(--border); color: var(--text);
             padding: 8px 4px; border-radius: 8px; cursor: pointer; font-size: .8rem;
             text-align: center; transition: .15s; }
.class-btn:hover { background: var(--border); border-color: var(--blue); }
.class-btn.selected { background: var(--blue); border-color: var(--blue); color: #fff; }
.class-btn.ai-label { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; pointer-events: none; }

/* ADMIN */
.admin-layout { display: grid; grid-template-columns: 1fr 420px; gap: 28px; }
.admin-meta { background: var(--bg3); border-radius: 10px; padding: 16px; font-size: .9rem; }
.meta-row { display: flex; justify-content: space-between; padding: 6px 0;
            border-bottom: 1px solid var(--border); }
.meta-row:last-child { border: none; }
.meta-key { color: var(--muted); }
.pending-badge { background: var(--orange); color: #fff; padding: 4px 12px;
                 border-radius: 20px; font-size: .85rem; font-weight: 700; }

/* LEADERBOARD */
.lb-table { width: 100%; border-collapse: collapse; }
.lb-table th { text-align: left; padding: 12px 16px; color: var(--muted);
               font-size: .8rem; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.lb-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.lb-table tr:hover td { background: var(--bg3); }
.rank-1 { color: #ffd700; font-weight: 700; }
.rank-2 { color: #c0c0c0; font-weight: 700; }
.rank-3 { color: #cd7f32; font-weight: 700; }

/* FORMS */
.form-card { max-width: 420px; margin: 80px auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; color: var(--muted); font-size: .9rem; }
.form-group input { width: 100%; background: var(--bg3); border: 1px solid var(--border);
                    color: var(--text); padding: 10px 14px; border-radius: 8px; font-size: .95rem; }
.form-group input:focus { outline: none; border-color: var(--blue); }
.form-group textarea { width: 100%; background: var(--bg3); border: 1px solid var(--border);
                        color: var(--text); padding: 10px 14px; border-radius: 8px; font-size: .9rem; resize: vertical; }
.error-msg { background: rgba(239,68,68,.15); border: 1px solid var(--red);
             color: var(--red); padding: 10px 14px; border-radius: 8px; margin-bottom: 16px; font-size: .9rem; }
.done-msg { text-align: center; padding: 48px 24px; color: var(--muted); font-size: 1.1rem; }

/* SPINNER */
.spinner { width: 40px; height: 40px; border: 3px solid var(--border);
           border-top-color: var(--orange); border-radius: 50%;
           animation: spin .8s linear infinite; margin: 24px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* HELP PAGE */
.help-card { margin-bottom: 24px; }
.help-badge { font-size: 2rem; margin-bottom: 6px; }
.help-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.help-col { font-size: .92rem; line-height: 1.7; }
.help-lang { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.help-intro { color: var(--muted); margin-bottom: 12px; font-size: .9rem; }
.help-list { padding-left: 18px; }
.help-list li { margin-bottom: 6px; }
.help-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.help-table th { text-align: left; padding: 8px 10px; color: var(--muted); font-size: .78rem; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.help-table td { padding: 8px 10px; border-bottom: 1px solid var(--border); }
.help-table .green  { color: var(--green); font-weight: 700; }
.help-table .muted  { color: var(--muted); }
.help-toc { padding: 16px 24px; }
.help-tag { background: var(--bg3); border: 1px solid var(--border); color: var(--text);
            padding: 4px 12px; border-radius: 20px; font-size: .82rem; text-decoration: none; transition: .15s; }
.help-tag:hover { background: var(--border); text-decoration: none; }
.help-btn { background: var(--bg3); border: 1px solid var(--border); color: var(--muted);
            padding: 5px 12px; border-radius: 8px; cursor: pointer; font-size: .85rem;
            text-decoration: none; display: inline-flex; align-items: center; }
.help-btn:hover { background: var(--border); color: var(--text); text-decoration: none; }

/* STREAK DISPLAY */
.streak-display {
  background: var(--bg3); border-radius: 10px; padding: 16px; text-align: center;
  border: 2px solid transparent;
  transition: background .4s, box-shadow .5s, border-color .4s;
}
/* Tier 1 — 5+ streaks: warm orange glow */
.streak-tier-1 {
  border-color: rgba(251,146,60,.65);
  box-shadow: 0 0 18px rgba(249,115,22,.45);
  background: rgba(249,115,22,.09) !important;
}
/* Tier 2 — 10+ streaks: strong orange, pulsing */
.streak-tier-2 {
  border-color: rgba(249,115,22,.95);
  box-shadow: 0 0 28px rgba(249,115,22,.65), 0 0 55px rgba(249,115,22,.22);
  background: rgba(249,115,22,.14) !important;
  animation: streakPulse2 1.8s ease-in-out infinite;
}
/* Tier 3 — 15+ streaks: red-orange inferno */
.streak-tier-3 {
  border-color: #ef4444;
  box-shadow: 0 0 40px rgba(239,68,68,.8), 0 0 80px rgba(249,115,22,.38);
  background: rgba(239,68,68,.14) !important;
  animation: streakPulse3 1.1s ease-in-out infinite;
}
/* Tier 4 — 20+ streaks: white-hot unstoppable */
.streak-tier-4 {
  border-color: #fbbf24;
  box-shadow: 0 0 55px rgba(251,191,36,.95), 0 0 110px rgba(249,115,22,.55), 0 0 180px rgba(239,68,68,.3);
  background: rgba(251,191,36,.11) !important;
  animation: streakPulse4 .75s ease-in-out infinite;
}
@keyframes streakPulse2 {
  0%,100% { box-shadow: 0 0 28px rgba(249,115,22,.65); }
  50%      { box-shadow: 0 0 46px rgba(249,115,22,.95); }
}
@keyframes streakPulse3 {
  0%,100% { box-shadow: 0 0 40px rgba(239,68,68,.8),  0 0 80px rgba(249,115,22,.38); }
  50%      { box-shadow: 0 0 62px rgba(239,68,68,1),   0 0 120px rgba(249,115,22,.65); }
}
@keyframes streakPulse4 {
  0%,100% { box-shadow: 0 0 55px rgba(251,191,36,.95), 0 0 110px rgba(249,115,22,.55); transform: scale(1); }
  50%      { box-shadow: 0 0 85px rgba(251,191,36,1),   0 0 170px rgba(249,115,22,.8);  transform: scale(1.03); }
}
/* Number bounce when a fire milestone hits */
@keyframes numPop {
  0%   { transform: scale(1);   }
  35%  { transform: scale(1.55); }
  65%  { transform: scale(0.88); }
  100% { transform: scale(1);   }
}
.streak-num-pop { animation: numPop .52s cubic-bezier(.36,.07,.19,.97); }

/* RANK BADGE */
.rank-badge { display: inline-block; margin-top: 6px; font-size: .82rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

/* WEEKEND BANNER */
.weekend-banner { background: linear-gradient(90deg, #f97316, #ea580c); color: #fff;
  text-align: center; padding: 9px 16px; font-weight: 700; font-size: .9rem;
  animation: bannerPulse 2.5s ease-in-out infinite; position: relative; z-index: 99; }
@keyframes bannerPulse { 0%,100% { opacity: 1; } 50% { opacity: .82; } }

/* Mobile overrides live in mobile.css */

/* ════════════════════════════════════════════════════════════════════════
   FULL-VIEWPORT LAYOUT  ·  game-page  /  admin-page
   ════════════════════════════════════════════════════════════════════════ */

body.game-page,
body.admin-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* Container fills remaining height after nav (+ optional banner) */
body.game-page > .container,
body.admin-page > .container {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  padding-bottom: 10px;
}

body.game-page .page-title,
body.admin-page .page-title { margin-bottom: 2px; }

body.game-page .page-sub,
body.admin-page .page-sub { margin-bottom: 10px; }

/* Game grid: single row fills all available height */
body.game-page .game-layout {
  flex: 1; min-height: 0;
  grid-template-rows: 1fr;
  align-items: stretch;
}
/* Admin grid: single row fills height */
body.admin-page .admin-layout {
  flex: 1; min-height: 0;
  grid-template-rows: 1fr;
  align-items: stretch;
}

/* Canvas column: flex chain to fill the grid row */
body.game-page .game-canvas-col,
body.admin-page .admin-layout > div:first-child {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Canvas card grows to fill its column */
body.game-page .game-canvas-col > .card,
body.admin-page .admin-layout > div:first-child > .card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* canvas-wrap fills the card, letterboxes the canvas */
body.game-page .canvas-wrap,
body.admin-page .canvas-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Canvas letterboxes — preserves aspect ratio, fills available space */
body.game-page #game-canvas,
body.admin-page #game-canvas {
  max-width:  100%;
  max-height: 100%;
  width:      auto !important;
  height:     auto !important;
}

/* Sidebar scrolls internally so it never forces the page to scroll */
body.game-page .game-side,
body.admin-page .game-side {
  min-height:      0;
  overflow-y:      auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
body.game-page .game-side::-webkit-scrollbar,
body.admin-page .game-side::-webkit-scrollbar { width: 5px; }
body.game-page .game-side::-webkit-scrollbar-thumb,
body.admin-page .game-side::-webkit-scrollbar-thumb {
  background: var(--border); border-radius: 4px;
}

/* Multi-product / rebox full-screen sections become fixed overlays */
body.game-page #multi-section,
body.game-page #rebox-section {
  position:   fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  z-index:    150;
  background: var(--bg);
  overflow-y: auto;
  padding:    20px;
}

/* ════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════════════════ */

/* ── Button transitions & hover glows ─────────────────────────────────── */
.btn { transition: background .15s, transform .15s, box-shadow .15s, opacity .2s; }
.btn:active  { transform: scale(.92) !important; }
.btn:hover   { transform: translateY(-2px); }

.btn-green:hover  { box-shadow: 0 0 0 3px rgba(34,197,94,.45),  0 6px 24px rgba(34,197,94,.35); }
.btn-red:hover    { box-shadow: 0 0 0 3px rgba(239,68,68,.45),  0 6px 24px rgba(239,68,68,.35); }
.btn-yellow:hover { box-shadow: 0 0 0 3px rgba(234,179,8,.45),  0 6px 24px rgba(234,179,8,.35); }
.btn-purple:hover { box-shadow: 0 0 0 3px rgba(168,85,247,.45), 0 6px 24px rgba(168,85,247,.35); }
.btn-orange:hover { box-shadow: 0 0 0 3px rgba(249,115,22,.45), 0 6px 24px rgba(249,115,22,.35); }
.btn-primary:hover { box-shadow: 0 0 0 3px rgba(249,115,22,.45), 0 6px 24px rgba(249,115,22,.35); }

/* ── Canvas fade-in when a new detection loads ─────────────────────────── */
@keyframes canvasFadeIn {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1);   }
}
.canvas-loaded { animation: canvasFadeIn .3s ease-out; }

/* ── Answer feedback: canvas card border flashes green or red ──────────── */
@keyframes answerGreen {
  0%   { border-color: var(--green); box-shadow: 0 0 0 4px rgba(34,197,94,.55), 0 0 40px rgba(34,197,94,.25); }
  100% { border-color: var(--border); box-shadow: var(--shadow); }
}
@keyframes answerRed {
  0%   { border-color: var(--red);   box-shadow: 0 0 0 4px rgba(239,68,68,.55), 0 0 40px rgba(239,68,68,.25); }
  100% { border-color: var(--border); box-shadow: var(--shadow); }
}
.answer-flash-green { animation: answerGreen .75s ease-out; }
.answer-flash-red   { animation: answerRed .75s ease-out; }

/* ── Cards: subtle lift on hover ───────────────────────────────────────── */
.card { transition: transform .18s ease, box-shadow .18s ease, background .4s, border-color .4s; }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,0,0,.55); }

/* ── Confidence bar: smooth fill ───────────────────────────────────────── */
.conf-bar { transition: width .55s cubic-bezier(.4,0,.2,1); }

/* ── Score value pop when points are awarded ───────────────────────────── */
@keyframes scorePop {
  0%   { transform: scale(1);    }
  40%  { transform: scale(1.42); color: var(--green); }
  70%  { transform: scale(.92);  }
  100% { transform: scale(1);    }
}
.score-pop { animation: scorePop .48s ease-out; }

/* ── Detected-label slides in when new detection loads ─────────────────── */
@keyframes labelSlideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.label-anim { animation: labelSlideIn .28s ease-out; }

/* ── Wrong-section slide-in ────────────────────────────────────────────── */
@keyframes wrongSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0);     }
}
.wrong-anim { animation: wrongSlideIn .22s ease-out; }
