/* Бренд-токены HowToBetCorrectly? — источник: hud/style.css (актуальная палитра) */
:root {
  --bg: #14100d;
  --panel-bg: rgba(24, 20, 17, 0.92);
  --line: rgba(210, 195, 178, 0.10);
  --line-strong: rgba(210, 195, 178, 0.16);
  --accent: #d8c8b4;
  --wordmark-c: #d2c3b2;
  --red: #b8222e;
  --red-deep: #6b262a;
  --amber: #E8A93A;
  --text: #ECE6DC;
  --soft: rgba(236, 231, 221, 0.72);
  --dim: rgba(236, 231, 221, 0.40);
  --win: #52C97A;
  --lose: #E05555;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--wordmark-c);
  letter-spacing: 0;
  line-height: 1;
}
.wordmark .q { font-weight: 600; color: var(--red); }
.tagline {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--red-deep);
  line-height: 1;
  padding-top: 12px;
  margin-top: 12px;
}
.tagline::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72%; height: 1.5px;
  background: linear-gradient(to right,
    transparent 0%, rgba(107, 38, 42, 0.8) 15%,
    rgba(107, 38, 42, 0.8) 85%, transparent 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}
.panel {
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-top: 1px solid var(--line-strong);
  border-radius: 3px;
}
.mono { font-family: 'JetBrains Mono', monospace; }
