:root {
  --bg: #161a1d;
  --panel: #1f2428;
  --panel-2: #272d32;
  --line: #333b41;
  --text: #e9edf0;
  --muted: #8d979f;
  --accent: #f4b822;
  --grey: #8b949c; --green: #4cae4f; --blue: #3b8cf0; --purple: #a24df2; --yellow: #f4b822; --red: #e5383b;
  --cell: 72px;
  --peek: 0.3;
  --outline: #0d0f11;
  --display: 'Lilita One', 'Arial Black', system-ui, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; background: var(--bg); color: var(--text); font-family: 'Nunito', system-ui, sans-serif; font-weight: 600; }
body { min-height: 100dvh; overflow-x: hidden; }
body.shake #app { animation: shake .5s cubic-bezier(.36,.07,.19,.97) both; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
button:disabled { cursor: not-allowed; }
[hidden] { display: none !important; }

#app {
  max-width: 520px; margin: 0 auto; padding: max(10px, env(safe-area-inset-top)) 16px 20px;
  display: flex; flex-direction: column; gap: 10px; min-height: 100dvh;
}

/* ---------- header / hud ---------- */
.top { display: flex; align-items: center; justify-content: space-between; }
h1 {
  font-family: var(--display); font-weight: 400; font-size: 30px; margin: 0; letter-spacing: .5px;
  color: var(--accent); text-shadow: 0 3px 0 var(--outline), 0 0 18px #f4b82233;
  -webkit-text-stroke: 1px var(--outline);
}
.icon-btn { width: 42px; height: 42px; border-radius: 12px; background: var(--panel); display: grid; place-items: center; border: 2px solid var(--line); }
.hud { display: flex; gap: 8px; }
.stat { flex: 1; background: var(--panel); border: 2px solid var(--line); border-radius: 12px; padding: 6px 10px; min-width: 0; }
.stat .lbl { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.stat .val { font-family: var(--display); font-size: 20px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stat.debt { border-color: #7a2e1f; background: #2a1a17; }
.stat.debt .val { color: #ff8f7a; }
.val.bump { animation: bump .45s ease; }
.val.down { color: #ff8f7a; }

.bonus-bar {
  display: flex; justify-content: space-between; gap: 8px; align-items: center; white-space: nowrap;
  height: 36px; box-sizing: border-box; padding: 0 10px; font-size: 13px; color: #f7e7bb;
  background: linear-gradient(90deg, #5a1f14, #7a2e1f); border: 2px solid #e0b64a; border-radius: 12px;
}
.bonus-bar b { font-family: var(--display); font-weight: 400; font-size: 15px; color: #ffd166; }

/* ---------- machine ---------- */
.machine {
  position: relative; align-self: center;
  padding: 10px; border-radius: 18px;
  background: linear-gradient(#2b3238, #1c2125);
  border: 3px solid var(--outline);
  box-shadow: 0 0 0 3px #3a434a inset, 0 10px 30px #0008;
}
body.bonus .machine { background: linear-gradient(#5a2a1d, #2c1611); box-shadow: 0 0 0 3px #e0b64a inset, 0 0 40px #e0b64a44; }
.reels { display: flex; gap: 4px; }
.reel {
  position: relative; width: var(--cell); height: calc(var(--cell) * (3 + 2 * var(--peek)));
  overflow: hidden; border-radius: 10px; background: #12161a;
  box-shadow: inset 0 0 0 2px #0008;
}
.reel::before, .reel::after {
  content: ''; position: absolute; left: 0; right: 0; height: calc(var(--cell) * var(--peek)); z-index: 2; pointer-events: none;
}
.reel::before { top: 0; background: linear-gradient(#12161af2, #12161a99); border-bottom: 2px solid #0006; }
.reel::after { bottom: 0; background: linear-gradient(#12161a99, #12161af2); border-top: 2px solid #0006; }
.reel.tease { box-shadow: inset 0 0 0 3px var(--accent), 0 0 18px var(--accent); animation: teasePulse .5s ease-in-out infinite alternate; }
.reel.tease.rar { --accent: var(--purple); }
.reel.tease.shd { --accent: var(--red); }
.strip { position: absolute; left: 0; top: 0; width: 100%; will-change: transform; }
.cell { width: var(--cell); height: var(--cell); display: grid; place-items: center; position: relative; }
.cell img { width: 94%; height: 94%; display: block; pointer-events: none; user-select: none; }
.cell.win img { animation: winPop .6s ease-in-out infinite alternate; }
.cell.win::after { content: ''; position: absolute; inset: 4px; border-radius: 10px; box-shadow: 0 0 0 3px var(--c), 0 0 16px var(--c); }
.cell.glow img { filter: drop-shadow(0 0 8px #ffd166) drop-shadow(0 0 3px #fff); animation: winPop .4s ease-in-out infinite alternate; }
.cell.dim img { opacity: .35; filter: grayscale(.6); transition: opacity .3s; }
.cell.flip img { animation: flip .45s ease both; }

.lines { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); pointer-events: none; z-index: 3; overflow: visible; }
.lines polyline { fill: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px currentColor); stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw .5s ease forwards; }
.lines .under { stroke: var(--outline); stroke-width: 9; filter: none; }

.toast {
  position: absolute; left: 50%; bottom: 14px; transform: translate(-50%, 20px); z-index: 5;
  background: #0d0f11ee; border: 2px solid var(--line); border-radius: 12px; padding: 8px 12px;
  font-size: 14px; text-align: center; width: max-content; max-width: 92%;
  opacity: 0; transition: opacity .2s, transform .2s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .gp { color: var(--grey); font-family: var(--display); }

.msg { text-align: center; min-height: 22px; color: var(--muted); font-size: 14px; }

/* ---------- controls ---------- */
.controls { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.spin-btn {
  width: 112px; height: 112px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe08a, #f4b822 45%, #c28a0a);
  border: 4px solid var(--outline); box-shadow: 0 6px 0 var(--outline), 0 0 24px #f4b82244;
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: #2a1d02;
  transition: transform .08s, filter .2s;
}
.spin-btn:active:not(:disabled) { transform: translateY(4px); box-shadow: 0 2px 0 var(--outline); }
.spin-btn:disabled { filter: grayscale(.8) brightness(.7); }
.spin-lbl { font-family: var(--display); font-size: 32px; line-height: 1; }
.spin-sub { font-size: 13px; font-weight: 800; }
body.bonus .spin-btn { background: radial-gradient(circle at 35% 30%, #ff9c8a, #c9262c 50%, #7a1418); color: #fff; }
.side-btn {
  justify-self: center; display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--panel); border: 2px solid var(--line); border-radius: 14px; padding: 8px 12px; min-width: 84px; font-size: 13px; color: var(--muted);
}
.side-btn .bolt, .side-btn.info span:first-child { font-size: 20px; font-family: var(--display); }
.side-btn[aria-pressed="true"] { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 12px #f4b82255; }

.rescue { display: flex; flex-direction: column; gap: 8px; }
.rescue-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 14px;
  font-family: var(--display); font-size: 20px; border: 3px solid var(--outline); box-shadow: 0 4px 0 var(--outline);
}
.rescue-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--outline); }
.rescue-btn.factory { background: #3b8cf0; color: #fff; }
.rescue-btn.mom { background: #ff8fb1; color: #3a0d1c; animation: nudge 1.6s ease-in-out infinite; }

footer { margin-top: auto; text-align: center; font-size: 12px; color: var(--muted); }
footer p { margin: 4px 0; }
footer a { color: var(--muted); }

/* ---------- overlays ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 16px;
  background: #0b0d0fcc; backdrop-filter: blur(3px); animation: fadeIn .2s ease;
}
.card {
  width: 100%; max-width: 400px; background: var(--panel); border: 3px solid var(--outline); border-radius: 20px;
  padding: 20px; box-shadow: 0 0 0 2px var(--line) inset, 0 20px 50px #000a; animation: popIn .35s cubic-bezier(.2,1.4,.4,1);
  max-height: calc(100dvh - 32px); overflow: auto;
}
.card h2 { font-family: var(--display); font-weight: 400; font-size: 28px; margin: 0 0 10px; color: var(--accent); }
.card p { margin: 8px 0; line-height: 1.45; }
.card .small { font-size: 13px; color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 6px; margin: 14px 0; }
.field label { font-weight: 800; }
.field input[type=text], .field input[type=number] {
  font: inherit; font-size: 18px; padding: 12px; border-radius: 12px; border: 2px solid var(--line); background: #12161a; color: var(--text);
}
.field input:focus { outline: none; border-color: var(--accent); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.4; margin: 10px 0; }
.check input { width: 22px; height: 22px; flex: none; margin: 0; accent-color: var(--accent); }
.err { color: #ff8f7a; min-height: 20px; font-size: 14px; font-weight: 800; }
.err.joke { animation: shakeX .4s; }
.primary {
  width: 100%; padding: 14px; border-radius: 14px; background: var(--accent); color: #2a1d02;
  font-family: var(--display); font-size: 22px; border: 3px solid var(--outline); box-shadow: 0 4px 0 var(--outline); margin-top: 8px;
}
.primary:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--outline); }

/* win window */
.win { text-align: center; position: relative; overflow: hidden; }
.win .big { font-family: var(--display); font-size: 64px; line-height: 1; margin: 0 0 6px; color: var(--c); -webkit-text-stroke: 2px var(--outline); text-shadow: 0 4px 0 var(--outline); animation: winText .8s ease-in-out infinite alternate; }
.win .rlabel { font-family: var(--display); font-size: 18px; color: var(--c); letter-spacing: 1px; text-transform: uppercase; }
.item-card {
  width: 150px; height: 150px; margin: 12px auto; border-radius: 16px; border: 3px solid var(--outline);
  background: radial-gradient(circle at 50% 35%, #ffffff55, transparent 60%), var(--c);
  display: grid; place-items: center; box-shadow: 0 0 30px var(--c);
}
.item-card svg { width: 80%; height: 80%; }
.win .name { font-family: var(--display); font-size: 26px; }
.win .price { font-size: 18px; color: var(--muted); }
.win .net { font-size: 14px; color: var(--muted); margin-top: 4px; }
.win .tap { font-size: 12px; color: var(--muted); margin-top: 12px; }
.win.r1 .big { font-size: 84px; }

.intro { text-align: center; background: linear-gradient(#3a1a12, #1f2428); border-color: #e0b64a; }
.intro .parl svg { width: 220px; max-width: 70%; }
.intro h2 { font-size: 34px; color: #ffd166; }
.intro .decree { font-family: var(--display); font-size: 22px; color: #f7e7bb; }
.intro .stamp {
  display: inline-block; margin-top: 10px; padding: 4px 14px; border: 4px solid #c9262c; color: #c9262c; border-radius: 8px;
  font-family: var(--display); font-size: 26px; transform: rotate(-8deg); animation: stamp .5s .6s cubic-bezier(.2,1.6,.4,1) both;
}
.summary .total { font-family: var(--display); font-size: 56px; color: #ffd166; -webkit-text-stroke: 2px var(--outline); }
.summary ul { list-style: none; padding: 0; margin: 12px 0; text-align: left; }
.summary li { display: flex; justify-content: space-between; padding: 6px 10px; border-radius: 8px; margin: 4px 0; background: #12161a; border-left: 5px solid var(--c); }

.paytable table { width: 100%; border-collapse: collapse; font-size: 13px; }
.paytable td, .paytable th { padding: 5px 4px; text-align: right; border-bottom: 1px solid var(--line); }
.paytable th:first-child, .paytable td:first-child { text-align: left; }
.paytable .sw { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 4px; vertical-align: middle; }

/* ---------- full-screen fx ---------- */
.fx { position: fixed; inset: 0; pointer-events: none; z-index: 40; overflow: hidden; }
.fx .rays {
  position: absolute; left: 50%; top: 50%; width: 260vmax; height: 260vmax; margin: -130vmax 0 0 -130vmax;
  background: repeating-conic-gradient(var(--c) 0 10deg, transparent 10deg 20deg); opacity: .25; animation: spin 6s linear infinite, fadeIn .4s;
}
.fx .flash { position: absolute; inset: 0; background: var(--c); animation: flash .7s ease-out forwards; }
.fx .coin, .fx .conf { position: absolute; top: -40px; animation: fall linear forwards; }
.fx .coin { width: 26px; height: 26px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff3b0, #f4b822 50%, #b9820b); border: 2px solid var(--outline); }
.fx .conf { width: 9px; height: 14px; border-radius: 2px; }

@keyframes shake { 10%,90% { transform: translate(-2px, 1px); } 20%,80% { transform: translate(4px, -2px); } 30%,50%,70% { transform: translate(-7px, 3px); } 40%,60% { transform: translate(7px, -3px); } }
@keyframes shakeX { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
@keyframes bump { 40% { transform: scale(1.18); color: var(--accent); } }
@keyframes winPop { to { transform: scale(1.1); } }
@keyframes teasePulse { to { box-shadow: inset 0 0 0 3px var(--accent), 0 0 34px var(--accent); } }
@keyframes flip { 0% { transform: rotateY(0); } 50% { transform: rotateY(90deg); } 100% { transform: rotateY(0); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes popIn { from { transform: scale(.7); opacity: 0; } }
@keyframes winText { to { transform: scale(1.06) rotate(-2deg); } }
@keyframes stamp { from { transform: scale(3) rotate(-8deg); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes flash { from { opacity: .7; } to { opacity: 0; } }
@keyframes fall { to { transform: translateY(calc(100vh + 80px)) rotate(720deg); } }
@keyframes nudge { 0%,100% { transform: none; } 50% { transform: scale(1.03); } }

@media (min-width: 700px) {
  #app { max-width: 620px; padding-top: 24px; }
  h1 { font-size: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  body.shake #app, .fx .rays { animation: none; }
}

/* ================= v2 ================= */
.top-btns { display: flex; gap: 8px; }
.mystery {
  height: 36px; box-sizing: border-box;
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: #9fb6cf;
  background: #16212c; border: 2px solid #2b4460; border-radius: 12px; padding: 6px 10px;
}
.mystery .shield-ico { width: 18px; height: 18px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3CclipPath id='c'%3E%3Cpath d='M3 2h18v8c0 6-4 10-9 12C7 20 3 16 3 10z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23c)'%3E%3Cpath fill='%235d7fa3' d='M0 0h12v11H0zM12 11h12v13H12z'/%3E%3Cpath fill='%23d3d8dc' d='M12 0h12v11H12zM0 11h12v13H0z'/%3E%3C/g%3E%3Cpath d='M3 2h18v8c0 6-4 10-9 12C7 20 3 16 3 10z' fill='none' stroke='%2314171a' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; }
.mystery b { color: #e9edf0; font-family: var(--display); font-weight: 400; font-size: 15px; }
.mystery.hot { border-color: #7a2e2e; background: #2a1618; color: #ffb3a8; }
.mystery.mod { border-color: #5f8fc2; color: #cfe3ff; }
.prem-chip { margin-left: auto; font-family: var(--display); font-size: 12px; letter-spacing: 1px; color: #2a1d02; background: linear-gradient(#ffe08a, #e3a90c); border-radius: 6px; padding: 2px 6px; border: 2px solid var(--outline); }

/* x10 results sit on top of the reels, so nothing below them moves */
.multi {
  position: absolute; inset: 10px; z-index: 4; border-radius: 12px; padding: 8px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  background: #0d1013f0; animation: fadeIn .12s ease; cursor: pointer;
}
.multi-head { text-align: center; font-family: var(--display); font-size: 22px; line-height: 1; color: var(--text); }
.multi-head.up { color: #7ee08a; }
.multi-head.down { color: #ff8f7a; }
.multi-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.mcard { position: relative; aspect-ratio: 1; opacity: 0; transform: scale(.6) rotateY(90deg); transition: transform .3s cubic-bezier(.2,1.4,.4,1), opacity .2s; }
.mcard.show { opacity: 1; transform: none; }
.mcard svg { width: 100%; height: 100%; display: block; }
.mcard .p { position: absolute; left: 0; right: 0; bottom: 3%; text-align: center; font-size: 11px; font-weight: 800; color: #fff; text-shadow: 0 1px 2px #000; }
.mcard.best { z-index: 1; }
.mcard.best.show { transform: scale(1.12); }
.mcard.best::after { content: ''; position: absolute; inset: -2px; border-radius: 12px; box-shadow: 0 0 0 2px var(--c), 0 0 16px var(--c); }

.x10-wrap { justify-self: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.side-btn.x10:not(:disabled) { color: var(--accent); border-color: #a8962c; }
.side-btn:disabled { opacity: .45; }
.prem-only { font-size: 11px; color: #e3c13a; font-weight: 800; letter-spacing: .3px; }

.shop { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.shop-btn {
  padding: 10px 8px; border-radius: 12px; border: 2px solid var(--line); background: var(--panel); font-size: 13px; line-height: 1.2;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.shop-btn b { font-family: var(--display); font-weight: 400; font-size: 18px; }
.shop-btn.prem b { color: #e3c13a; }
.shop-btn.badge b { color: #8fc0ff; }
.shop-btn:disabled { opacity: .45; }
.shop-btn.owned { opacity: 1; border-style: dashed; color: var(--muted); }

.win .tax { font-size: 13px; color: #ff8f7a; }
.win .items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin: 8px 0; }
.win .items svg { width: 100%; }

/* ban */
.ban-screen {
  position: fixed; inset: 0; z-index: 45; display: grid; place-items: center; padding: 16px;
  background: radial-gradient(circle at 50% 30%, #8a1418, #3a0608 70%); animation: banIn .5s ease;
}
.ban-screen::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, #0000 0 22px, #0000000f 22px 44px); pointer-events: none; }
.ban-card { position: relative; width: 100%; max-width: 420px; text-align: center; color: #ffe9e6; }
.ban-card .shield-big { width: 120px; margin: 0 auto 8px; filter: drop-shadow(0 6px 0 #0006); }
.ban-card h2 { font-family: var(--display); font-weight: 400; font-size: 32px; margin: 6px 0; color: #fff; text-shadow: 0 3px 0 #0008; }
.ban-card p { margin: 8px 0; line-height: 1.4; }
.ban-card .reason { font-family: var(--display); font-size: 20px; color: #ffd166; }
.ban-card .fine { font-family: var(--display); font-size: 22px; color: #ff9c8a; }
.ban-card .timer { font-family: var(--display); font-size: 54px; letter-spacing: 2px; margin: 10px 0; color: #fff; font-variant-numeric: tabular-nums; }
.ban-card .small { font-size: 13px; opacity: .8; }
.ban-card textarea {
  width: 100%; min-height: 96px; resize: vertical; font: inherit; font-size: 16px; padding: 10px; border-radius: 12px;
  border: 2px solid #ff9c8a; background: #2a0507; color: #fff;
}
.ban-card .count { font-size: 12px; opacity: .7; text-align: right; }
.ban-card .primary { background: #ffd166; }
.ban-card .ghost { width: 100%; margin-top: 8px; padding: 10px; border-radius: 12px; border: 2px solid #ffffff55; color: #fff; }

/* achievements */
.ach-toast {
  position: fixed; left: 50%; top: max(12px, env(safe-area-inset-top)); transform: translateX(-50%); z-index: 60;
  width: min(92vw, 400px); display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 16px;
  background: #1b2227; border: 3px solid #e3c13a; box-shadow: 0 10px 30px #000a, 0 0 24px #e3c13a55; animation: achIn .5s cubic-bezier(.2,1.4,.4,1);
}
.ach-toast .medal, .ach-list .medal { width: 46px; height: 46px; flex: none; }
.ach-toast .t1 { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #e3c13a; font-weight: 800; }
.ach-toast .t2 { font-family: var(--display); font-size: 18px; line-height: 1.15; }
.ach-toast .t3, .ach-list .t3 { font-size: 13px; color: var(--muted); }
.ach-list { list-style: none; padding: 0; margin: 8px 0; }
.ach-list li { display: flex; gap: 10px; align-items: center; padding: 8px; border-radius: 12px; background: #12161a; margin: 6px 0; }
.ach-list li.locked { opacity: .45; filter: grayscale(1); }
.ach-list .t2 { font-family: var(--display); font-size: 16px; }
.tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.tabs button { flex: 1; padding: 8px; border-radius: 10px; background: #12161a; border: 2px solid var(--line); font-weight: 800; }
.tabs button.on { border-color: var(--accent); color: var(--accent); }
.confirm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.confirm-row .ghost { padding: 14px; border-radius: 14px; border: 2px solid var(--line); font-weight: 800; margin-top: 8px; }

@keyframes banIn { from { opacity: 0; transform: scale(1.1); } }
@keyframes achIn { from { transform: translate(-50%, -120%); } }

/* ================= v0.1 ================= */
h1 .ver { font-family: 'Nunito', system-ui, sans-serif; font-weight: 800; font-size: 12px; color: var(--muted); -webkit-text-stroke: 0; text-shadow: none; letter-spacing: 0; vertical-align: middle; }
.responsible {
  margin: 14px 0 4px; padding: 10px 12px; border-radius: 12px; font-size: 13px; line-height: 1.45;
  background: #12161a; border: 2px solid var(--line); border-left: 4px solid var(--accent); color: #c9d1d7;
}
.responsible b { color: var(--text); }
.real-note { margin-top: 6px; font-style: italic; }
.toast-note { margin-top: 6px; padding-top: 6px; border-top: 1px solid #ffffff22; font-size: 12px; color: var(--muted); }
/* Short phones (iPhone SE class): tighter layout so more of the screen fits without scrolling. */
@media (max-height: 720px) {
  #app { gap: 7px; padding-top: max(6px, env(safe-area-inset-top)); }
  h1 { font-size: 24px; }
  .icon-btn { width: 36px; height: 36px; }
  .stat { padding: 4px 8px; }
  .stat .val { font-size: 17px; }
  .machine { padding: 7px; }
  .lines { inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px); }
  .multi { inset: 7px; }
  .msg { min-height: 18px; font-size: 13px; }
  .spin-btn { width: 92px; height: 92px; }
  .spin-lbl { font-size: 26px; }
  .side-btn { padding: 6px 10px; }
  .rescue-btn { padding: 9px; font-size: 18px; }
  .shop-btn { padding: 6px 8px; }
  .shop-btn b { font-size: 16px; }
}

/* Launch-day banner on the ban screen (config.json free_unbans.message) */
.launch-banner {
  display: inline-block; margin: 0 auto 12px; padding: 8px 14px; border-radius: 12px; transform: rotate(-2deg);
  background: linear-gradient(#ffe08a, #e3a90c); color: #2a1d02; border: 3px solid var(--outline); box-shadow: 0 4px 0 var(--outline);
  font-family: var(--display); font-size: 18px; line-height: 1.2; max-width: 100%;
}

.like-card { text-align: center; }
.like-card h2 { font-size: 30px; }
.like-card p { font-size: 17px; }

/* Moderator news popups (free unban note, fines restored) */
.news-card { text-align: center; }
.news-kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: #cfe3ff; background: #2b4460; border: 2px solid #5f8fc2; border-radius: 8px; padding: 2px 10px; margin-bottom: 8px; }
.news-card h2 { font-size: 32px; }
.news-card p { font-size: 17px; }
.news-extra { color: var(--muted); font-size: 15px !important; }
.news-amount { font-family: var(--display); font-size: 48px; color: #7ee08a; -webkit-text-stroke: 2px var(--outline); margin: 6px 0 10px; }
