.today-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 90, 80, .28), transparent 34%),
    linear-gradient(135deg, #071a2e, #123b66 70%, #4d2631);
}

.today-content {
  gap: 48px;
}

.today-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.today-stat-strip > div {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.today-stat-strip > div:last-child {
  border-right: 0;
}

.today-stat-strip span,
.today-stat-strip strong {
  display: block;
}

.today-stat-strip span {
  color: var(--muted);
  font-size: 11px;
}

.today-stat-strip strong {
  margin-top: 3px;
  font-size: 21px;
}

.today-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.today-answer-card {
  min-height: 215px;
  padding: 25px;
  border-top: 5px solid #2e7b69;
}

.today-answer-card.no-games {
  border-top-color: #b86a19;
  background: linear-gradient(135deg, #fff, #fffaf1);
}

.today-answer-card.next-game-card {
  border-top-color: #1769a5;
}

.today-status-pill {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: #7b4100;
  background: #ffedc7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.today-answer-card.has-games .today-status-pill {
  color: #12604e;
  background: #d9f5eb;
}

.today-status-pill.next {
  color: #0e578c;
  background: #e2f1fc;
}

.today-answer-card h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.today-answer-card p {
  margin: 6px 0;
  color: var(--muted);
}

.today-answer-card p strong {
  color: var(--ink);
  font-size: 18px;
}

.today-answer-card > a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 750;
}

.today-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.today-link-card {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 20px;
  color: var(--ink);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.today-link-card:hover {
  border-color: #75aeda;
  box-shadow: 0 14px 30px rgba(18, 53, 91, .11);
  text-decoration: none;
  transform: translateY(-3px);
}

.today-link-card > span {
  color: #1769a5;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.today-link-card h3 {
  margin: 9px 0 7px;
  font-size: 19px;
  line-height: 1.25;
}

.today-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.today-guide-grid .guide-card,
.today-status-grid .guide-card {
  border-top: 4px solid #1769a5;
}

.today-status-grid .guide-card {
  border-top-color: #2e7b69;
}

.today-faq-grid .faq-item {
  min-height: 190px;
}

.live-score {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

@media (max-width: 960px) {
  .today-stat-strip,
  .today-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .today-stat-strip > div:nth-child(2) {
    border-right: 0;
  }

  .today-stat-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .today-stat-strip,
  .today-answer-grid,
  .today-link-grid {
    grid-template-columns: 1fr;
  }

  .today-stat-strip > div,
  .today-stat-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .today-stat-strip > div:last-child {
    border-bottom: 0;
  }

  .today-answer-card,
  .today-link-card {
    min-height: 0;
  }
}

@media print {
  .today-link-grid,
  .today-answer-grid,
  .today-stat-strip,
  .today-content > section:not(#today-schedule) {
    display: none !important;
  }
}
