/* SharpLab HQ — Math Sprint page.
   Builds on hqstyle.css (shared vars/header/nav/.btn/.card). Only page-specific styling here. */

/* ── Page intro ── */
.ms-head { margin: 4px 0 20px; text-align: center; }
.ms-head h1 { font-size: 26px; margin: 0 0 4px; }
.ms-head p { color: var(--muted); margin: 0; font-size: 14px; }

.balancechip {
  display: inline-flex; align-items: center; gap: 6px; margin-left: 10px;
  font-size: 13px; font-weight: 700; color: var(--gold);
  background: var(--panel2); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 3px 11px; vertical-align: middle;
}

/* ── Game card ── */
.ms-wrap { max-width: 460px; margin: 0 auto; }
.mscard {
  display: flex; flex-direction: column; gap: var(--s-4); align-items: center; text-align: center;
  padding: 26px 22px;
}
.mscard .muted { margin: 0; font-size: 14px; }

.msbig { font-size: 46px; font-weight: 800; letter-spacing: .5px; }

/* ── Countdown bar ── */
.mstimebar {
  width: 100%; height: 10px; background: var(--panel2); border: 1px solid var(--line);
  border-radius: var(--r-pill); overflow: hidden;
}
.mstimefill {
  height: 100%; width: 100%; transform-origin: left center; transform: scaleX(1);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
@media (prefers-reduced-motion: no-preference) {
  .mstimefill { transition: transform .12s linear; }
}

/* ── Run meta row ── */
.msmeta {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums;
}
.mssecs { font-weight: 800; color: var(--accent2); font-size: 15px; }
.mssolved b { color: var(--fg); }

/* ── The problem ── */
.msq {
  font-size: 40px; font-weight: 800; letter-spacing: 1px; font-variant-numeric: tabular-nums;
  padding: 8px 0;
}
.msinput {
  width: 100%; font-family: inherit; font-size: 28px; font-weight: 700; color: var(--fg);
  text-align: center; background: var(--panel2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 12px 14px; font-variant-numeric: tabular-nums;
}
.msinput:focus { outline: none; border-color: var(--accent); }

/* ── Result ── */
.msresult .msbig { font-size: 36px; }
.msreward { font-size: 22px; font-weight: 800; color: var(--gold); font-variant-numeric: tabular-nums; }

/* ── Buttons ── */
.btn.big { font-size: 16px; padding: 12px 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   Copied verbatim from cards.css so the coins hub + toasts are styled on this
   page too (cards.css is only loaded on the Cards page).
   ═══════════════════════════════════════════════════════════════════════════ */
.coinschip { font-weight: 700; color: var(--gold); background: var(--panel2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 11px; font-size: 13px; white-space: nowrap; cursor: pointer; transition: border-color .15s, transform .15s; }
.coinschip:hover { border-color: var(--gold); transform: translateY(-1px); }

/* Coins hub modal */
.hubov { position: fixed; inset: 0; z-index: 250; display: grid; place-items: center; padding: 20px; background: rgba(5,7,11,.6); backdrop-filter: blur(3px); animation: cd-scrim-in .18s ease both; }
@keyframes cd-scrim-in { from { opacity: 0; } to { opacity: 1; } }
.hubcard { width: min(460px, 100%); background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px 20px; box-shadow: 0 24px 60px -20px #000; }
.hubhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hubhead h3 { margin: 0; font-size: 17px; }
.hubx { background: none; border: 0; color: var(--muted); font-size: 18px; cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 8px; }
.hubx:hover { color: var(--fg); background: var(--panel2); }
.hubrow { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--line); }
.hubrow:first-of-type { border-top: 0; }
.hubicon { font-size: 20px; width: 30px; text-align: center; flex: 0 0 auto; }
.hubt { font-weight: 700; font-size: 14px; }
.hubd { color: var(--muted); font-size: 12.5px; line-height: 1.45; margin-top: 2px; }
.hubfoot { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: right; }
.hubfoot b { color: var(--gold); }

.cardtoast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 300;
  background: var(--panel2); color: var(--fg); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 18px; font-size: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
