/* ============ Chicken Crosser — design tokens ============ */
:root {
  --night: #17141f;
  --night-2: #1e1a2a;
  --asphalt: #2b2a33;
  --asphalt-2: #232129;
  --lane-line: #4a4856;
  --panel: #221c33;
  --panel-edge: #372e52;
  --go: #7be042;
  --go-deep: #3f9e1c;
  --go-glow: rgba(123, 224, 66, 0.35);
  --gold: #ffc93c;
  --gold-deep: #cc8f12;
  --fire: #ff6b2b;
  --danger: #ff4757;
  --ink: #fff8ec;
  --ink-dim: #b9b3c9;
  --display: 'Lilita One', cursive;
  --body: 'Nunito', sans-serif;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 500;
  background: var(--night);
  color: var(--ink);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: 0.5px; }

img { max-width: 100%; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: #123304;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(180deg, #a5ef6e 0%, var(--go) 45%, #58c22a 100%);
  border: 0;
  border-bottom: 4px solid var(--go-deep);
  border-radius: 16px;
  padding: 0.85rem 1.9rem;
  cursor: pointer;
  box-shadow: 0 6px 24px var(--go-glow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active { transform: translateY(1px); border-bottom-width: 2px; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn:disabled { filter: grayscale(0.6) brightness(0.7); cursor: not-allowed; transform: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--panel-edge);
  border-bottom-width: 4px;
  box-shadow: none;
}
.btn-small { font-size: 0.95rem; padding: 0.5rem 1.2rem; border-radius: 12px; }

/* ============ Topbar ============ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(23, 20, 31, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-edge);
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-badge { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--display); font-size: 1.3rem; color: var(--ink);
}
.brand-name em { font-style: normal; color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 0.9rem; }

.coin-chip {
  display: flex; align-items: center; gap: 0.35rem;
  background: var(--panel); border: 1px solid var(--panel-edge);
  border-radius: 999px; padding: 0.35rem 0.9rem;
  font-weight: 800; font-size: 1rem; color: var(--gold);
}

/* ============ Hero ============ */
.hero {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center;
  gap: 2rem;
  max-width: 1150px; margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem) 3rem;
}
.eyebrow {
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--go); margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); line-height: 1.05; text-shadow: 0 4px 0 rgba(0,0,0,0.35); }
.hl-fire {
  background: linear-gradient(180deg, #ffd23c, var(--fire));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--ink-dim); font-size: 1.1rem; line-height: 1.6; margin: 1.2rem 0 1.8rem; max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-note { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-dim); }

.hero-stage { position: relative; min-height: 320px; }
.hero-road {
  position: absolute; inset: 12% 0 12% 0;
  background: linear-gradient(180deg, var(--asphalt-2), var(--asphalt) 30%, var(--asphalt-2));
  border-radius: 24px;
  border: 1px solid var(--lane-line);
  display: flex; align-items: flex-end; justify-content: space-around;
  padding-bottom: 8%;
  box-shadow: inset 0 8px 30px rgba(0, 0, 0, 0.5);
}
.hero-road::before {
  content: ''; position: absolute; left: 4%; right: 4%; top: 50%;
  border-top: 4px dashed rgba(255, 248, 236, 0.25);
}
.hero-manhole {
  width: 17%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4d4b59, #33313d 55%, #211f28);
  border: 3px solid #14121b;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.7);
}
.hero-manhole.is-lit { box-shadow: inset 0 3px 8px rgba(0,0,0,0.7), 0 0 34px rgba(255, 107, 43, 0.55); }
.hero-chicken {
  position: absolute; width: 52%; left: 8%; bottom: 14%;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.55));
  animation: bob 3.2s ease-in-out infinite;
}
.hero-flame {
  position: absolute; width: 24%; right: 10%; bottom: 34%;
  animation: flicker 1.6s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes flicker {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.08) translateY(-4px); opacity: 1; }
}

/* ============ Game section ============ */
.game-section { padding: 2rem clamp(0.5rem, 3vw, 2.5rem) 4rem; max-width: 1150px; margin: 0 auto; }
.game-head { text-align: center; margin-bottom: 1.6rem; }
.game-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.game-head p { color: var(--ink-dim); margin-top: 0.4rem; }

.game {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* --- Level toolbar --- */
.game-toolbar {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.9rem clamp(1rem, 3vw, 1.8rem);
  border-bottom: 1px solid var(--panel-edge);
  overflow-x: auto;
}
.toolbar-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-dim); flex: 0 0 auto;
}
.levels { display: flex; gap: 0.45rem; }
.level {
  flex: 0 0 auto;
  border-radius: 999px; padding: 0.35rem 0.9rem;
  font-family: var(--body); font-weight: 800; font-size: 0.88rem;
  color: var(--ink-dim); background: var(--night-2);
  border: 2px solid var(--panel-edge); cursor: pointer;
  transition: filter 0.12s;
}
.level small { font-weight: 700; opacity: 0.7; font-size: 0.78em; }
.level:hover:not(:disabled) { filter: brightness(1.25); }
.level.is-on { color: #123304; background: var(--go); border-color: var(--go-deep); }
.level.is-on small { opacity: 0.85; }
.level.is-locked { opacity: 0.45; cursor: not-allowed; }
.level:disabled:not(.is-locked) { cursor: default; }

/* --- Track --- */
.track-wrap { overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--panel-edge) transparent; }
.track {
  --cell: 96px;
  position: relative;
  display: flex;
  min-width: max-content;
  height: 250px;
  background:
    linear-gradient(180deg, var(--asphalt-2) 0%, var(--asphalt) 25%, var(--asphalt) 75%, var(--asphalt-2) 100%);
}
.cell {
  width: var(--cell); flex: 0 0 var(--cell);
  position: relative;
  border-left: 3px dashed rgba(255, 248, 236, 0.14);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 28px;
}
.cell-start, .cell-finish {
  background: repeating-linear-gradient(45deg, #262233 0 14px, #2d2840 14px 28px);
  border-left: 0;
  justify-content: center;
}
.cell-finish { border-left: 4px solid var(--gold); }
.cell-start { border-right: 4px solid rgba(255, 248, 236, 0.2); }
.curb-label {
  font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-dim);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.cell-finish .curb-label { color: var(--gold); }

.chip {
  position: absolute; top: 14px;
  font-weight: 900; font-size: 0.92rem;
  background: var(--night-2); color: var(--ink-dim);
  border: 2px solid var(--lane-line);
  border-radius: 999px; padding: 0.2rem 0.7rem;
  transition: all 0.25s ease;
}
.cell.is-current .chip {
  color: #123304; background: var(--go); border-color: var(--go-deep);
  box-shadow: 0 0 18px var(--go-glow);
}
.cell.is-passed .chip { color: #4a2f00; background: var(--gold); border-color: var(--gold-deep); }
.cell.is-burnt .chip { color: var(--ink); background: var(--danger); border-color: #a81222; }

.manhole {
  width: 58px; height: 58px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4d4b59, #33313d 55%, #211f28);
  border: 3px solid #14121b;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.7);
  position: relative;
}
.manhole::after {
  content: ''; position: absolute; inset: 10px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 248, 236, 0.12);
}
.cell.is-current .manhole { box-shadow: inset 0 3px 8px rgba(0,0,0,0.7), 0 0 22px var(--go-glow); }

.chicken {
  position: absolute; bottom: 34px; left: 48px;
  width: 74px; z-index: 5;
  transform: translateX(-50%);
  transition: left 0.38s cubic-bezier(0.3, 0.9, 0.55, 1);
}
.chicken.is-hopping { animation: hop 0.42s cubic-bezier(0.4, 0, 0.5, 1); }
@keyframes hop {
  0%   { transform: translateX(-50%) scale(1.06, 0.9); }
  38%  { transform: translateX(-50%) translateY(-34px) scale(0.95, 1.08) rotate(5deg); }
  72%  { transform: translateX(-50%) translateY(-4px) rotate(0deg); }
  84%  { transform: translateX(-50%) scale(1.14, 0.84); }
  100% { transform: translateX(-50%) scale(1, 1); }
}
.chicken.is-dead { transition: none; animation: fry 0.9s ease forwards; }
@keyframes fry {
  0%   { transform: translateX(-50%) translateY(0) rotate(0); }
  30%  { transform: translateX(-50%) translateY(-48px) rotate(-14deg); }
  60%  { transform: translateX(-50%) translateY(-10px) rotate(4deg); }
  100% { transform: translateX(-50%) translateY(6px) rotate(8deg); }
}
.chicken.is-celebrating { animation: celebrate 0.65s ease 3; }
@keyframes celebrate {
  0%, 100% { transform: translateX(-50%); }
  40% { transform: translateX(-50%) translateY(-24px) rotate(-7deg); }
  70% { transform: translateX(-50%) scale(1.1, 0.9); }
}

.chicken-shadow {
  position: absolute; bottom: 28px; left: 48px;
  width: 48px; height: 13px; z-index: 4;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45), transparent 70%);
  transform: translateX(-50%);
  transition: left 0.38s cubic-bezier(0.3, 0.9, 0.55, 1);
  pointer-events: none;
}
.chicken-shadow.is-air { animation: shadowHop 0.42s ease; }
@keyframes shadowHop {
  0%   { transform: translateX(-50%) scale(1); opacity: 1; }
  38%  { transform: translateX(-50%) scale(0.5); opacity: 0.5; }
  100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.fx {
  position: absolute; bottom: 30px; width: 64px; height: 26px;
  transform: translateX(-50%); z-index: 3;
  opacity: 0; pointer-events: none;
}
.fx::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid rgba(255, 248, 236, 0.55);
}
.fx.is-on { animation: fxRing 0.5s ease-out; }
@keyframes fxRing {
  0% { opacity: 0.8; transform: translateX(-50%) scale(0.35); }
  100% { opacity: 0; transform: translateX(-50%) scale(1.5); }
}

.cell.is-pressed .manhole { animation: padDip 0.45s ease; }
@keyframes padDip {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(4px) scale(0.96); }
  100% { transform: translateY(0) scale(1); }
}

.cell.is-passed .chip { animation: chipPop 0.35s ease; }
@keyframes chipPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

.track.is-shaking { animation: trackShake 0.55s ease; }
@keyframes trackShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

.burst {
  position: absolute; bottom: 40px; width: 92px; z-index: 6;
  transform: translateX(-50%) scale(0.2);
  opacity: 0; pointer-events: none;
}
.burst.is-on { animation: boom 0.9s ease forwards; }
@keyframes boom {
  0% { transform: translateX(-50%) scale(0.2); opacity: 0; }
  25% { transform: translateX(-50%) scale(1.15); opacity: 1; }
  70% { transform: translateX(-50%) scale(1); opacity: 1; }
  100% { transform: translateX(-50%) scale(1.05); opacity: 0; }
}

/* --- Dashboard --- */
.dashboard {
  display: grid; grid-template-columns: 1fr 1fr 1.6fr;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 3vw, 1.8rem) 1.5rem;
  border-top: 1px solid var(--panel-edge);
  align-items: start;
}
.dash-block { display: flex; flex-direction: column; gap: 0.5rem; }
.dash-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-dim);
}
.dash-value { font-size: 1.7rem; font-weight: 900; display: flex; align-items: center; gap: 0.4rem; }
.dash-value.flash-win { animation: coinflash 0.8s ease; }
@keyframes coinflash {
  0% { color: var(--ink); }
  30% { color: var(--gold); transform: scale(1.12); }
  100% { color: var(--ink); transform: scale(1); }
}

.dash-actions { gap: 0.7rem; }
.btn-main { width: 100%; font-size: 1.3rem; }
.dash-msg { font-size: 0.95rem; font-weight: 700; color: var(--ink-dim); min-height: 1.4em; }
.dash-msg.is-win { color: var(--gold); }
.dash-msg.is-lose { color: var(--danger); }

/* ============ Skins & stats ============ */
.skins-panel {
  margin-top: 1.6rem;
  background: var(--panel); border: 1px solid var(--panel-edge);
  border-radius: 24px; padding: 1.6rem clamp(1rem, 3vw, 1.8rem);
}
.skins-panel h3 { font-size: 1.5rem; }
.skins-sub { color: var(--ink-dim); margin: 0.3rem 0 1.1rem; }
.skins {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.9rem;
}
.skin {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  background: var(--night-2); border: 2px solid var(--panel-edge);
  border-radius: 18px; padding: 1rem 0.6rem;
  font-family: var(--body); color: var(--ink);
  cursor: pointer; transition: transform 0.12s, border-color 0.12s;
}
.skin:hover:not(:disabled) { transform: translateY(-3px); }
.skin img { width: 74px; height: 74px; object-fit: contain; }
.skin strong { font-size: 0.95rem; font-weight: 800; }
.skin span { font-size: 0.78rem; color: var(--ink-dim); text-align: center; }
.skin.is-on { border-color: var(--go); box-shadow: 0 0 16px var(--go-glow); }
.skin.is-on span { color: var(--go); font-weight: 800; }
.skin.is-locked { cursor: not-allowed; }
.skin.is-locked img { filter: grayscale(1) brightness(0.55); }
.skin.is-locked strong { color: var(--ink-dim); }

.trophies {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.9rem;
}
.trophy {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  background: var(--night-2); border: 2px solid var(--panel-edge);
  border-radius: 18px; padding: 1rem 0.6rem; text-align: center;
}
.trophy-icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--night); font-size: 1.5rem;
  border: 2px solid var(--panel-edge);
}
.trophy strong { font-size: 0.92rem; font-weight: 800; }
.trophy > span:last-child { font-size: 0.76rem; color: var(--ink-dim); }
.trophy.is-got { border-color: var(--gold); }
.trophy.is-got .trophy-icon {
  background: radial-gradient(circle at 35% 30%, #ffe28a, var(--gold) 70%);
  border-color: var(--gold-deep);
}
.trophy.is-got strong { color: var(--gold); }
.trophy:not(.is-got) .trophy-icon { filter: grayscale(1) brightness(0.8); }

.toast {
  position: fixed; left: 50%; bottom: 1.4rem; z-index: 100;
  transform: translate(-50%, 140%);
  background: var(--panel); border: 2px solid var(--gold);
  border-radius: 999px; padding: 0.7rem 1.4rem;
  font-weight: 800; font-size: 0.98rem; color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  pointer-events: none; max-width: min(92vw, 30rem); text-align: center;
  visibility: hidden;
}
.toast.is-on { transform: translate(-50%, 0); visibility: visible; }

.stats-strip {
  margin-top: 1.6rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.stat {
  text-align: center; padding: 1.1rem 0.5rem;
  border: 1px dashed var(--panel-edge); border-radius: 18px;
}
.stat strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.7rem; color: var(--gold); }
.stat span { color: var(--ink-dim); font-size: 0.85rem; font-weight: 700; }

/* ============ Legal pages ============ */
.legal {
  max-width: 720px; margin: 0 auto;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 0.4rem; }
.legal-updated { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.3rem; margin: 1.8rem 0 0.6rem; }
.legal p, .legal li { color: var(--ink-dim); line-height: 1.65; }
.legal ul { padding-left: 1.3rem; margin: 0.6rem 0; }
.legal li { margin-bottom: 0.6rem; }
.legal a { color: var(--go); }
.legal strong { color: var(--ink); }

.footer-links { margin-bottom: 0.6rem; }
.footer-links a { color: var(--ink-dim); font-weight: 700; }
.footer-links a:hover { color: var(--go); }

/* ============ How it works ============ */
.how { max-width: 1150px; margin: 0 auto; padding: 3rem clamp(1rem, 4vw, 2.5rem); text-align: center; }
.how h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2rem; }
.how-steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  text-align: left;
}
.how-card {
  background: var(--night-2); border: 1px solid var(--panel-edge);
  border-radius: 20px; padding: 1.6rem;
  position: relative;
}
.how-num {
  font-family: var(--display); font-size: 1.1rem;
  display: inline-grid; place-items: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--go); color: #123304;
  margin-bottom: 0.9rem;
}
.how-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.how-card p { color: var(--ink-dim); line-height: 1.55; font-size: 0.98rem; }

/* ============ Features ============ */
.features {
  max-width: 1150px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.feat {
  text-align: center; padding: 1.4rem 0.5rem;
  border: 1px dashed var(--panel-edge); border-radius: 20px;
}
.feat strong { display: block; font-family: var(--display); font-weight: 400; font-size: 2rem; color: var(--gold); }
.feat span { color: var(--ink-dim); font-size: 0.9rem; font-weight: 700; }

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; padding: 1rem clamp(1rem, 4vw, 2.5rem) 4rem; }
.faq h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1.6rem; }
.faq details {
  background: var(--night-2); border: 1px solid var(--panel-edge);
  border-radius: 16px; padding: 1rem 1.3rem; margin-bottom: 0.8rem;
}
.faq summary { font-weight: 800; cursor: pointer; font-size: 1.05rem; }
.faq details p { color: var(--ink-dim); margin-top: 0.7rem; line-height: 1.55; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--panel-edge);
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem);
  text-align: center; color: var(--ink-dim); font-size: 0.9rem;
}
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-size: 1.1rem; color: var(--ink);
  margin-bottom: 0.8rem;
}
.footer-brand img { width: 30px; height: 30px; }
.footer-brand em { font-style: normal; color: var(--gold); }
.footer p { max-width: 46rem; margin: 0 auto 0.5rem; line-height: 1.5; }
.footer-copy { font-size: 0.8rem; opacity: 0.7; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-stage { min-height: 260px; order: -1; }
  .hero-chicken { width: 44%; }
  .dashboard { grid-template-columns: 1fr 1fr; }
  .dash-actions { grid-column: 1 / -1; }
  .how-steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .skins { grid-template-columns: repeat(2, 1fr); }
  .trophies { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .dashboard { grid-template-columns: 1fr; }
  .track { --cell: 84px; height: 220px; }
  .chicken { width: 64px; }
  .coin-chip { font-size: 0.9rem; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-chicken, .hero-flame { animation: none; }
  .chicken, .chicken-shadow { transition: left 0.01s; }
  .chicken.is-hopping, .chicken.is-dead, .chicken.is-celebrating,
  .chicken-shadow.is-air, .fx.is-on, .track.is-shaking,
  .cell.is-pressed .manhole, .cell.is-passed .chip { animation: none; }
  .btn { transition: none; }
}
