/* =========================================================
   TYLKO IGOR — style.css
   Design philosophy: everything, all at once, out of love.
   ========================================================= */

:root {
  --pink: #ff00aa;
  --cyan: #00f0ff;
  --yellow: #ffe600;
  --lime: #7cff00;
  --orange: #ff6a00;
  --purple: #8a00ff;
  --gold: #ffd700;
  --ink: #0b0015;
  --paper: #fffef5;
  --font-head: 'Bungee', 'Impact', 'Arial Black', sans-serif;
  --font-shade: 'Bungee Shade', 'Bungee', 'Impact', sans-serif;
  --font-body: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paper);
  background: linear-gradient(-45deg, #0b0015, #2a0050, #003a5c, #4a0030, #0b0015);
  background-size: 400% 400%;
  animation: bg-shift 18s ease infinite;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: crosshair;
}
@keyframes bg-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- Language switching ---------- */
body.lang-pl .en { display: none !important; }
body.lang-en .pl { display: none !important; }

/* ---------- Sparkles ---------- */
.sparkles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 80% 10%, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 50% 70%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 10% 80%, var(--yellow) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 90% 60%, var(--cyan) 50%, transparent 51%),
    radial-gradient(2px 2px at 65% 40%, var(--pink) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 35% 90%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 75% 85%, #fff 50%, transparent 51%);
  background-size: 600px 600px;
  animation: twinkle 3s ease-in-out infinite alternate;
  opacity: .8;
}
@keyframes twinkle { from { opacity: .35; } to { opacity: 1; } }

#confetti { position: fixed; inset: 0; pointer-events: none; z-index: 9998; }
#trail { position: fixed; inset: 0; pointer-events: none; z-index: 9997; overflow: hidden; }
.trail-dot {
  position: absolute; font-size: 22px; pointer-events: none;
  animation: trail-fade .9s ease-out forwards;
  transform: translate(-50%, -50%);
}
@keyframes trail-fade {
  to { opacity: 0; transform: translate(-50%, -160%) rotate(60deg) scale(.4); }
}

/* ---------- Fixed controls ---------- */
.lang-toggle {
  position: fixed; top: 12px; right: 12px; z-index: 10000;
  display: flex; gap: 4px; padding: 4px;
  background: rgba(0,0,0,.6); border: 2px solid var(--yellow); border-radius: 999px;
  backdrop-filter: blur(6px);
}
.lang-toggle button {
  font: 700 14px var(--font-body); padding: 6px 12px; border-radius: 999px;
  border: 0; background: transparent; color: #fff; cursor: pointer;
}
.lang-toggle button.active { background: var(--yellow); color: var(--ink); }

.ultra-btn {
  position: fixed; bottom: 16px; right: 12px; z-index: 10000;
  font: 700 12px var(--font-head); letter-spacing: .5px;
  padding: 10px 14px; border-radius: 8px; cursor: pointer;
  border: 3px dashed var(--yellow); color: var(--yellow);
  background: rgba(60,0,0,.85);
  animation: alarm 1.2s steps(2) infinite;
}
@keyframes alarm { 50% { border-color: #f00; color: #f00; } }

/* ---------- Ticker ---------- */
.ticker {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  background: #d00; color: #fff; font-weight: 900;
  border-bottom: 4px solid var(--yellow);
  overflow: hidden; height: 40px;
}
.ticker-label {
  flex: none; display: grid; place-items: center; padding: 0 16px;
  background: var(--yellow); color: #000; font-family: var(--font-head); font-size: 14px;
  animation: blink 1s steps(2) infinite;
}
.ticker-track { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-content {
  white-space: nowrap; display: inline-block; padding-left: 100%;
  animation: ticker 60s linear infinite; font-size: 15px; letter-spacing: .5px;
}
@keyframes ticker { to { transform: translateX(-100%); } }

/* ---------- Generic ---------- */
section, header, footer { position: relative; z-index: 1; }
section { padding: 72px 20px; max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 5vw, 52px);
  text-align: center; margin: 0 0 12px; line-height: 1.05;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.6));
}
.section-title .grad {
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--cyan), var(--lime), var(--yellow));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rainbow-slide 4s linear infinite;
}
.section-title .emoji { display: inline-block; animation: bob 1.4s ease-in-out infinite; }
@keyframes rainbow-slide { to { background-position: 300% 0; } }

.section-sub { text-align: center; opacity: .9; max-width: 720px; margin: 0 auto 32px; font-size: 18px; }
.fine-print { text-align: center; font-size: 13px; opacity: .65; margin-top: 28px; }

.btn {
  display: inline-block; text-decoration: none; cursor: pointer; border: 0;
  font-family: var(--font-head); font-size: 16px; letter-spacing: .5px;
  padding: 14px 24px; border-radius: 14px; color: var(--ink);
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg) scale(1.04); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn-mega {
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  background-size: 200% 200%;
  box-shadow: 0 6px 0 #7a0040, 0 12px 30px rgba(255,0,170,.5);
  animation: bg-shift 3s ease infinite, wiggle 2.5s ease-in-out infinite;
}
@keyframes wiggle { 0%,100% { rotate: 0deg; } 25% { rotate: -1.5deg; } 75% { rotate: 1.5deg; } }
.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff; border: 2px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

.blink { animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Hero ---------- */
.hero {
  text-align: center; padding: 60px 20px 40px; min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.badge {
  font: 900 12px var(--font-body); letter-spacing: 1px; padding: 6px 12px; border-radius: 999px;
  background: var(--yellow); color: #000; transform: rotate(-2deg);
}
.badge:nth-child(even) { background: var(--cyan); transform: rotate(2deg); }

.avatar-ring {
  position: relative; width: 190px; height: 190px; margin: 10px 0;
  border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(from 0deg, var(--gold), #fff, var(--gold), #b8860b, var(--gold));
  animation: spin 6s linear infinite;
  box-shadow: 0 0 40px var(--gold), 0 0 80px rgba(255,215,0,.5);
  cursor: pointer;
}
.avatar-ring .avatar {
  width: 160px; height: 160px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #4a0090, #0b0015);
  font-size: 96px; animation: spin 6s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orbit {
  position: absolute; font-size: 28px; top: 50%; left: 50%;
  animation: orbit 5s linear infinite;
}
.o1 { animation-delay: 0s; } .o2 { animation-delay: -1.25s; } .o3 { animation-delay: -2.5s; } .o4 { animation-delay: -3.75s; }
@keyframes orbit {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

.pre-title { font-size: 18px; font-weight: 700; margin: 0; opacity: .9; text-transform: uppercase; letter-spacing: 2px; }

.mega-title {
  margin: 0; line-height: .9; cursor: pointer; user-select: none;
  display: flex; flex-direction: column; align-items: center;
}
.mega-title .line1 {
  font-family: var(--font-head); font-size: clamp(40px, 9vw, 110px);
  color: var(--yellow); text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 var(--purple);
  animation: bob 1.4s ease-in-out infinite;
}
.mega-title .line2 {
  font-family: var(--font-shade); font-size: clamp(70px, 17vw, 260px);
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--cyan), var(--lime), var(--yellow));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rainbow-slide 3s linear infinite, bob 1.4s ease-in-out infinite reverse;
  filter: drop-shadow(0 0 25px rgba(255,0,170,.8));
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }

.subtitle { font-size: clamp(16px, 2.4vw, 24px); max-width: 720px; margin: 8px 0 0; }
.subtitle strong { color: var(--yellow); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 12px; }
.hero-footnote { font-size: 12px; opacity: .6; max-width: 560px; margin: 8px 0 0; }
.scroll-hint { margin-top: 24px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; animation: bob 1.4s ease-in-out infinite; opacity: .8; }

/* ---------- As seen in ---------- */
.seen-in { padding: 20px; text-align: center; }
.seen-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .6; margin: 0 0 8px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; opacity: .85; }
.logos span { font-family: var(--font-head); font-size: 14px; }
.logos span:nth-child(odd) { font-style: italic; font-family: Georgia, serif; font-size: 17px; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.stat {
  background: rgba(255,255,255,.06); border: 2px solid rgba(255,255,255,.15);
  border-radius: 18px; padding: 22px 16px; text-align: center;
  transition: transform .2s;
}
.stat:hover { transform: scale(1.05) rotate(-1deg); border-color: var(--yellow); }
.stat-num { font-family: var(--font-head); font-size: clamp(22px, 2.4vw, 30px); color: var(--yellow); font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden; text-overflow: clip; }
.stat-label { margin-top: 6px; opacity: .85; font-size: 14px; }

/* ---------- Facts ---------- */
.fact-machine { text-align: center; margin-bottom: 40px; }
.fact-display {
  min-height: 120px; display: grid; place-items: center;
  font-size: clamp(20px, 3vw, 30px); font-weight: 700; padding: 24px;
  background: #000; border: 6px double var(--yellow); border-radius: 20px;
  max-width: 820px; margin: 0 auto 20px; color: var(--lime);
  box-shadow: inset 0 0 40px rgba(124,255,0,.2), 0 0 30px rgba(124,255,0,.3);
  font-family: 'Courier New', monospace;
}
.fact-display.pop { animation: pop .4s ease; }
@keyframes pop { 0% { transform: scale(.7) rotate(-3deg); } 60% { transform: scale(1.06) rotate(1deg); } 100% { transform: none; } }
.fact-count { margin-top: 14px; opacity: .7; }
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.fact-list li {
  background: rgba(255,255,255,.07); border-left: 6px solid var(--pink); padding: 14px 16px; border-radius: 0 14px 14px 0;
  font-size: 16px; line-height: 1.4;
}
.fact-list li:nth-child(3n) { border-color: var(--cyan); }
.fact-list li:nth-child(3n+1) { border-color: var(--yellow); }
.fact-list li b { color: var(--yellow); }

/* ---------- Timeline ---------- */
.tl { list-style: none; padding: 0; margin: 30px 0 0; position: relative; }
.tl::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 6px;
  background: repeating-linear-gradient(180deg, var(--yellow) 0 20px, var(--pink) 20px 40px);
  border-radius: 3px;
}
.tl-item { position: relative; padding: 0 0 36px 64px; }
.tl-item::before {
  content: '🚣'; position: absolute; left: 4px; top: 0; font-size: 24px;
  background: var(--ink); border: 3px solid var(--yellow); border-radius: 50%; width: 40px; height: 40px;
  display: grid; place-items: center;
}
.tl-year { font-family: var(--font-head); color: var(--cyan); font-size: 14px; letter-spacing: 2px; }
.tl-item h3 { margin: 4px 0 6px; font-size: 24px; color: var(--yellow); }
.tl-item p { margin: 0; opacity: .9; line-height: 1.5; }

/* ---------- Quote ---------- */
.quote-section { text-align: center; }
.big-quote {
  font-size: clamp(22px, 3.4vw, 36px); font-weight: 900; line-height: 1.3; margin: 0 auto 24px; max-width: 800px;
  font-style: italic; color: #fff; text-shadow: 0 0 20px var(--cyan);
  min-height: 3em;
}
.big-quote::before { content: '“'; color: var(--pink); font-size: 1.6em; line-height: 0; vertical-align: -.3em; }
.big-quote::after { content: '”'; color: var(--pink); font-size: 1.6em; line-height: 0; vertical-align: -.3em; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.testi {
  margin: 0; padding: 22px; border-radius: 18px;
  background: var(--paper); color: var(--ink);
  transform: rotate(var(--r, -1deg)); transition: transform .2s;
  box-shadow: 0 10px 0 rgba(0,0,0,.4);
}
.testi:nth-child(2n) { --r: 1.2deg; } .testi:nth-child(3n) { --r: -0.6deg; } .testi:nth-child(4n) { --r: 1.8deg; }
.testi:hover { transform: rotate(0) scale(1.05); }
.stars { color: var(--orange); font-size: 20px; letter-spacing: 2px; }
.testi blockquote { margin: 8px 0; font-size: 17px; font-weight: 700; line-height: 1.4; }
.testi figcaption { font-size: 14px; opacity: .75; }

/* ---------- Igor-o-meter ---------- */
.meter { max-width: 720px; margin: 0 auto; text-align: center; }
.meter input[type=range] { width: 100%; height: 30px; accent-color: var(--pink); cursor: pointer; }
.meter-readout { font-family: var(--font-head); font-size: clamp(50px, 10vw, 110px); color: var(--yellow); line-height: 1; margin-top: 10px; text-shadow: 6px 6px 0 var(--pink); }
.meter-title { font-size: 22px; font-weight: 900; margin-top: 10px; min-height: 1.5em; }

/* ---------- Game ---------- */
.game { max-width: 860px; margin: 0 auto; background: rgba(0,0,0,.35); border: 3px solid var(--cyan); border-radius: 22px; padding: 22px; }
.lane { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 12px; margin-bottom: 14px; }
.lane-name { font-family: var(--font-head); font-size: 14px; color: var(--yellow); }
.lane-track {
  position: relative; height: 56px; border-radius: 12px; overflow: hidden;
  background: repeating-linear-gradient(90deg, #005f8a 0 40px, #007bb3 40px 80px);
  border: 2px dashed rgba(255,255,255,.4);
}
.lane-track::after { content: '🏁'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 30px; }
.boat { position: absolute; left: 0; top: 50%; transform: translateY(-50%); font-size: 40px; transition: left .1s linear; }
.boat.igor { filter: drop-shadow(0 0 10px var(--gold)); }
.boat.stroke { animation: stroke .15s ease; }
@keyframes stroke { 50% { transform: translateY(-60%) scale(1.15); } }
.game-controls { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; margin-top: 10px; font-weight: 700; font-size: 18px; }
.game-controls b { color: var(--yellow); font-variant-numeric: tabular-nums; }
.game-result { text-align: center; font-size: 20px; font-weight: 900; margin-top: 16px; min-height: 1.5em; color: var(--lime); }

/* ---------- Merch ---------- */
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.product {
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 2px solid rgba(255,255,255,.2); border-radius: 20px; padding: 22px; text-align: center;
  display: flex; flex-direction: column; gap: 8px; position: relative; overflow: hidden;
}
.product::before {
  content: '-100%'; position: absolute; top: 14px; left: -30px; transform: rotate(-30deg);
  background: #d00; color: #fff; font-weight: 900; padding: 4px 40px; font-size: 12px;
}
.product-img { font-size: 72px; }
.product h3 { margin: 0; color: var(--yellow); font-size: 20px; }
.product p { margin: 0; opacity: .85; flex: 1; }
.price { font-family: var(--font-head); font-size: 22px; color: var(--lime); text-decoration: line-through; text-decoration-color: var(--pink); }
.btn-buy { background: var(--lime); font-size: 14px; padding: 12px 18px; }

/* ---------- Anthem ---------- */
.anthem-box { max-width: 640px; margin: 0 auto; text-align: center; background: rgba(0,0,0,.4); border-radius: 22px; padding: 26px; border: 4px solid var(--gold); }
.lyrics {
  font-family: Georgia, 'Times New Roman', serif; font-size: 20px; line-height: 1.6;
  white-space: pre-wrap; margin: 0 0 20px; color: var(--paper); font-style: italic;
}

/* ---------- FAQ ---------- */
.faq details { background: rgba(255,255,255,.07); border-radius: 14px; padding: 14px 20px; margin-bottom: 10px; border: 2px solid transparent; }
.faq details[open] { border-color: var(--yellow); }
.faq summary { cursor: pointer; font-weight: 900; font-size: 19px; color: var(--yellow); }
.faq summary::marker { content: '🚣 '; }
.faq p { margin: 10px 0 0; font-size: 17px; line-height: 1.5; }

/* ---------- Fan club ---------- */
.fan-form { max-width: 560px; margin: 0 auto; display: grid; gap: 16px; background: rgba(255,255,255,.08); padding: 26px; border-radius: 22px; border: 3px solid var(--pink); }
.fan-form label { display: grid; gap: 6px; font-weight: 700; }
.fan-form input[type=text], .fan-form select {
  font: 16px var(--font-body); padding: 12px 14px; border-radius: 10px; border: 2px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.4); color: #fff;
}
.fan-form .check { grid-template-columns: auto 1fr; align-items: start; font-weight: 400; font-size: 14px; }
.fan-form .check input { margin-top: 4px; }
.fan-result { text-align: center; margin-top: 22px; font-size: 22px; font-weight: 900; color: var(--lime); min-height: 1.5em; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 60px 20px 160px; }
.counter-box { display: inline-flex; gap: 10px; align-items: center; font-weight: 700; margin-bottom: 20px; }
.retro-counter {
  font-family: 'Courier New', monospace; font-weight: 900; letter-spacing: 3px; font-size: 22px;
  background: #000; color: var(--lime); padding: 4px 10px; border: 3px inset #888;
}
.footer-line { max-width: 720px; margin: 8px auto; opacity: .85; line-height: 1.5; }
.footer-line.small { font-size: 12px; opacity: .55; }
.konami-hint { letter-spacing: 3px; }
.back-top { display: inline-block; margin-top: 16px; color: var(--yellow); font-weight: 900; text-decoration: none; }

/* ---------- Waves ---------- */
.waves { position: fixed; left: 0; right: 0; bottom: 0; height: 70px; z-index: 5; pointer-events: none; }
.wave { position: absolute; bottom: 0; width: 200%; height: 100%; }
.wave path { fill: rgba(0,180,255,.55); }
.w1 { animation: wave-move 7s linear infinite; }
.w2 { animation: wave-move 11s linear infinite reverse; opacity: .6; }
.w2 path { fill: rgba(0,120,220,.6); }
@keyframes wave-move { to { transform: translateX(-50%); } }
.wave-boat {
  position: absolute; bottom: 26px; font-size: 42px; left: -60px;
  animation: sail 22s linear infinite, bob 1.4s ease-in-out infinite;
}
@keyframes sail { to { left: 110%; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 100px; transform: translate(-50%, 40px);
  background: var(--yellow); color: var(--ink); font-weight: 900; padding: 14px 22px; border-radius: 14px;
  z-index: 10001; opacity: 0; transition: .25s; pointer-events: none; max-width: 90vw; text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px) scale(.96); transition: .6s cubic-bezier(.2,.8,.2,1.2); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- ULTRA IGOR MODE ---------- */
body.ultra { animation: bg-shift 1s ease infinite, hue 2s linear infinite; cursor: none; }
body.ultra section, body.ultra header, body.ultra footer { animation: ultra-shake .3s infinite; }
body.ultra .section-title, body.ultra .mega-title { animation: spin 2s linear infinite; }
body.ultra .btn { animation: spin 1s linear infinite; }
body.ultra .testi, body.ultra .stat, body.ultra .product { animation: ultra-spin 3s linear infinite; }
@keyframes hue { to { filter: hue-rotate(360deg); } }
@keyframes ultra-shake { 0%,100% { transform: translate(0,0); } 25% { transform: translate(3px,-3px) rotate(.5deg); } 75% { transform: translate(-3px,3px) rotate(-.5deg); } }
@keyframes ultra-spin { to { transform: rotate(360deg) scale(1.1); } }

/* ---------- Motion sensitivity ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker-content { animation: none; padding-left: 0; }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  section { padding: 48px 16px; }
  .hero { min-height: auto; padding-top: 40px; }
  .avatar-ring { width: 150px; height: 150px; }
  .avatar-ring .avatar { width: 124px; height: 124px; font-size: 72px; }
  @keyframes orbit {
    from { transform: rotate(0deg) translateX(95px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(95px) rotate(-360deg); }
  }
  .ultra-btn { bottom: 80px; font-size: 10px; padding: 8px 10px; }
  .lane { grid-template-columns: 50px 1fr; }
  .boat { font-size: 30px; }
}
