/* TokenHunt Concepts — landing page for the Telegramon concept games.
   Same TOKEHUNT palette as the games themselves: navy, neon cyan, lime. */

:root {
  --navy: #04101d;
  --panel: #081a2e;
  --panel-edge: #14374f;
  --cyan: #3fd9ff;
  --cyan-dim: #8fb3c7;
  --lime: #b8f235;
  --font: "Courier New", ui-monospace, Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  min-height: 100%;
  background:
    radial-gradient(1000px 500px at 50% -200px, #0a2440 0%, var(--navy) 60%) fixed,
    var(--navy);
  color: #dff3ff;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: .06em;
  -webkit-tap-highlight-color: transparent;
}

#shell {
  max-width: 460px;
  margin: 0 auto;
  padding: calc(14px + env(safe-area-inset-top)) 14px calc(20px + env(safe-area-inset-bottom));
}

.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 2px 4px;
  font-size: 20px;
  color: #dff3ff;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.brandMark { font-size: 24px; filter: drop-shadow(0 0 8px rgba(63,217,255,.6)); }
.brand span { color: var(--lime); }

.sub {
  font-size: 10.5px;
  color: var(--cyan-dim);
  line-height: 1.6;
  margin: 6px 2px 16px;
}

.cards { display: flex; flex-direction: column; gap: 10px; }

.card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 14px;
  padding: 13px 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,.35), inset 0 0 30px rgba(63,217,255,.03);
  transition: transform .08s ease, border-color .15s ease;
}
.card:active { transform: scale(.985); border-color: var(--cyan); }

.cEmoji { font-size: 30px; filter: drop-shadow(0 0 6px rgba(63,217,255,.35)); }

.cBody strong {
  display: block;
  font-size: 15px;
  color: var(--cyan);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(63,217,255,.4);
  margin-bottom: 4px;
}
.cBody p {
  font-size: 10px;
  font-weight: 400;
  color: var(--cyan-dim);
  line-height: 1.55;
  margin-bottom: 5px;
}
.cBest { font-size: 9px; color: var(--lime); text-transform: uppercase; letter-spacing: .1em; }

.cPlay {
  width: 34px; height: 34px; line-height: 34px;
  text-align: center;
  font-size: 13px;
  color: #0c2405;
  background: linear-gradient(180deg, #96dd3f, #7dc832);
  border-radius: 50%;
  box-shadow: 0 3px 0 #47761a, 0 6px 14px rgba(125,200,50,.3);
}

.foot {
  text-align: center;
  font-size: 9.5px;
  color: var(--cyan-dim);
  letter-spacing: .3em;
  margin-top: 20px;
  text-transform: uppercase;
}
