/* The Stadium FC — metrics + demo labelling
   Uses the live site palette: canvas #07090D, electric blue #2A5CFF, muted #8A93A6 */

/* Illustrative-content badge. Deliberately visible — the whole point is that a
   visitor cannot mistake a product mockup for live activity. */
.demo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(42, 92, 255, 0.55);
  border-radius: 999px;
  background: rgba(12, 26, 51, 0.92);
  color: #8A93A6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .demo-badge {
    top: 6px;
    right: 6px;
    font-size: 10px;
    padding: 3px 8px;
    white-space: normal;
    max-width: 60%;
  }
}

/* A metric still waiting on real data. The dash should read as deliberate,
   not as a broken value. */
[data-metric][data-metric-state="pre_launch"],
[data-metric][data-metric-state="unknown"] {
  color: #5B6478;
}

[data-metric][data-metric-state="live"] {
  color: inherit;
}

/* Empty states for the draft board and the shipped list */
.metric-empty {
  margin: 0;
  padding: 20px 24px;
  border: 1px dashed rgba(138, 147, 166, 0.3);
  border-radius: 12px;
  background: #121826;
  color: #8A93A6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* Draft board rows, once there are real votes */
.draft-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #121826;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.draft-rank {
  color: #2A5CFF;
  font-weight: 700;
  font-size: 15px;
}

.draft-title {
  color: #FFFFFF;
  font-size: 15px;
}

.draft-votes {
  color: #8A93A6;
  font-size: 13px;
  white-space: nowrap;
}
