:root {
  --bg: #0b0c0e;
  --elev: #14161a;
  --ink: #f4f1ea;
  --muted: #c9c2b6;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #e88c4a;
  --ok: #7dcea0;
  --danger: #e07a7a;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--ink); font-family: "IBM Plex Sans", system-ui, sans-serif; }
a { color: var(--orange); text-decoration: none; }
.wrap { max-width: 880px; margin: 0 auto; padding: 1.5rem 1.25rem 3rem; }
.top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.brand img { display: block; height: 42px; width: auto; }
.hero h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 0.75rem; }
.hero p { color: var(--muted); max-width: 38rem; line-height: 1.55; }
.cards { display: grid; gap: 1rem; margin: 2rem 0; }
.card { background: var(--elev); border: 1px solid var(--line); border-radius: 16px; padding: 1.15rem 1.25rem; }
.card h2 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.5; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 1.1rem; border-radius: 999px; border: 0; background: var(--orange); color: #1a1008; font-weight: 600; cursor: pointer; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.pad { min-height: 100dvh; display: flex; flex-direction: column; padding: max(12px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); }
.pad__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.chip { font-size: 13px; padding: 0.35rem 0.7rem; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }
.chip.is-ok { color: var(--ok); border-color: rgba(125, 206, 160, 0.4); }
.chip.is-bad { color: var(--danger); border-color: rgba(224, 122, 122, 0.4); }
.pad__stage { flex: 1; display: grid; place-items: center; gap: 16px; }
.hit { width: min(42vh, 220px); height: min(42vh, 220px); min-width: 56px; min-height: 56px; border-radius: 50%; border: 0; background: radial-gradient(circle at 35% 30%, #ffb087, var(--orange) 55%, #b85a22); color: #1a1008; font-size: 1.35rem; font-weight: 700; touch-action: manipulation; user-select: none; -webkit-user-select: none; }
.hit:active { transform: scale(0.97); }
.dino { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 720px; }
.dino .hit { width: 100%; height: min(38vh, 200px); border-radius: 28px; }
.ended { text-align: center; max-width: 22rem; }
.ended h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; margin: 0 0 0.6rem; }
.ended p { color: var(--muted); }
.orient { display: none; position: fixed; inset: 0; z-index: 20; background: rgba(11, 12, 14, 0.96); align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.orient.is-on { display: flex; }
.orient p { color: var(--muted); max-width: 18rem; }
@media (orientation: portrait) {
  .pad.is-live .orient { display: flex; }
  .pad.is-live .pad__stage { filter: grayscale(0.4); pointer-events: none; opacity: 0.25; }
}
