/* Card visuals — shared by the overlay and the phone preview so the preview
   matches what goes live. Reference styling; replace with your design's CSS. */
:root {
  --gold: #e9bc4a;
  --ink: #f4f6fb;
}

.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;
  color: var(--ink);
  font-family: "Saira", system-ui, sans-serif;
  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;
  margin-inline: auto;
}

.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;
}

/* Innings break — two panels: first-innings summary + chase. */
.card.innings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 64px;
  min-width: 1180px;
  text-align: left;
}
.card.innings .panel.chase {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 48px;
}
.card.innings .team {
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 28px;
  text-transform: uppercase;
}
.card.innings .team em {
  color: var(--gold);
  font-style: normal;
  font-size: 16px;
  display: block;
  letter-spacing: 0.22em;
}
.card.innings .label {
  color: var(--gold);
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: 20px;
}
.card.innings .big {
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  margin: 6px 0;
}
.card.innings .big.gold {
  color: var(--gold);
}
.card.innings .sub {
  color: rgba(244, 246, 251, 0.8);
  font-size: 22px;
  margin-bottom: 8px;
}
.card.innings .rows {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.card.innings .rows li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 28px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.card.innings .rows .v {
  color: var(--gold);
  font-weight: 600;
}
