/* Overlay: 1920x1080, transparent — composited over the camera in OBS. */
:root {
  --gold: #e9bc4a;
  --ink: #f4f6fb;
}

html,
body {
  margin: 0;
  height: 100%;
  background: transparent;
  overflow: hidden;
  font-family: "Saira", system-ui, sans-serif;
  color: var(--ink);
}

/* Full-canvas stage; cards center within it. */
#overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
}

/* Glass Card family — frosted translucent panel, rounded, subtle border. */
.card.glass {
  background: rgba(14, 20, 34, 0.62);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(233, 188, 74, 0.28);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: 64px 96px;
  text-align: center;
  /* entrance: fade + gentle rise; matched later to the Starting Soon export */
  animation: card-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.card .brand {
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 30px;
  color: var(--gold);
  text-transform: uppercase;
}

.card .card-title {
  font-weight: 700;
  font-size: 92px;
  line-height: 1.02;
  margin: 12px 0 20px;
  text-transform: uppercase;
}

.card .card-title.toss-line {
  font-size: 52px;
  max-width: 16ch;
}

.card .teams {
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.06em;
  opacity: 0.92;
  text-transform: uppercase;
}
