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

/* ── Page intro ── */
.sg-head { margin: 4px 0 20px; text-align: center; }
.sg-head h1 { font-size: 26px; margin: 0 0 4px; }
.sg-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 ── */
.sg-wrap { max-width: 460px; margin: 0 auto; }
.sgcard { display: flex; flex-direction: column; gap: var(--s-4); align-items: center; text-align: center; }

.sghint {
  font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--accent2);
  background: var(--panel2); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 3px 12px; font-weight: 700;
}

/* ── Ticker stage ── */
.sgstage {
  width: 100%; padding: 24px 12px; display: grid; place-items: center; gap: 6px;
  background: radial-gradient(circle at 50% 42%, var(--accent-soft), transparent 68%);
  border-radius: var(--r-lg); position: relative; min-height: 150px;
}
.sgstage.loading::after {
  content: "…"; position: absolute; font-size: 28px; color: var(--muted);
}
.sgstage.loading .sgticker,
.sgstage.loading .sgcompany,
.sgstage.loading .sgprompt { visibility: hidden; }
.sgticker { font-size: 52px; font-weight: 900; letter-spacing: 1px; line-height: 1; }
.sgcompany { font-size: 17px; font-weight: 700; color: var(--fg); }
.sgprompt { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Reveal panel ── */
.sgreveal { min-height: 0; display: flex; flex-direction: column; gap: 8px; align-items: center; width: 100%; }
.sgreveal.show { min-height: 92px; }
.sgactual { font-size: 30px; font-weight: 900; font-variant-numeric: tabular-nums; letter-spacing: .5px; }
.sgactual.up { color: var(--green, #63bb5b); }
.sgactual.down { color: var(--red); }
.sgactual .lbl { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: var(--muted); margin-bottom: 2px; }
.sgcompare { display: flex; gap: 18px; justify-content: center; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.sgcompare b { color: var(--fg); font-variant-numeric: tabular-nums; }
.sgverdict { font-size: 16px; font-weight: 800; }
.sgverdict.win { color: var(--gold); }
.sgverdict.miss { color: var(--red); }
.sgreward { font-size: 15px; font-weight: 800; color: var(--gold); font-variant-numeric: tabular-nums; }

/* ── Guess input ── */
.sgguessrow { display: flex; gap: 8px; width: 100%; align-items: stretch; }
.sgguess {
  flex: 1; font-family: inherit; font-size: 20px; font-weight: 700; color: var(--fg);
  background: var(--panel2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 11px 14px; text-align: center; font-variant-numeric: tabular-nums;
}
.sgguess:focus { outline: none; border-color: var(--accent); }
.sgguess:disabled { opacity: .5; }
.sgguess.shake { animation: sg-shake .4s ease; border-color: var(--red); }
@keyframes sg-shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(4px); }
}

/* ── Buttons ── */
.sgbtns { display: flex; gap: 8px; width: 100%; justify-content: center; flex-wrap: wrap; }
.sgbtns .btn { flex: 1; min-width: 140px; text-align: center; }
.btn.big { font-size: 16px; padding: 12px 18px; }

.sgmsg { font-size: 13px; min-height: 18px; font-weight: 600; }
.sgmsg.wrong { color: var(--red); }
.sgmsg.idle { color: var(--muted); font-weight: 400; }

.sgcounter { font-size: 12px; color: var(--muted); }
.sgcounter b { color: var(--fg); font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .sgguess.shake { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   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);
}
