/* Higher or Lower — two cards side by side, with a VS chip between. */

.hl-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.hl-vs {
  background: var(--tg-gold);
  color: #0a1122;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px -2px rgba(255,200,87,0.5);
}
.hl-left, .hl-right { padding: 14px 10px; }

.hl-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hl-flash {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 3px;
  font-size: 32px;
  padding: 20px;
  border-radius: 12px;
  margin: 18px 0;
}
.hl-flash.ok  { color: var(--tg-good); background: rgba(62,207,142,0.1); }
.hl-flash.bad { color: var(--tg-warn); background: rgba(255,92,122,0.1); }

@media (max-width: 420px) {
  .hl-stage { gap: 4px; }
  .hl-left, .hl-right { padding: 10px 4px; }
  .hl-vs { font-size: 16px; padding: 2px 6px; }
}
