/* ===============================================================
   Bad Bets — NFL season tracker (calendar strip + next-up tile)
   =============================================================== */

/* ===== Next-up hero tile ===== */
.nfl-nextup {
  padding: 22px 24px;
  border-radius: 16px;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255,170,0,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,170,0,0.22);
}
.nfl-nextup-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.nfl-nextup-row {
  display: flex; align-items: center; gap: 22px;
}
.nfl-nextup-cd {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text);
}
.nfl-nextup-meta { flex: 1; }
.nfl-nextup-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.nfl-nextup-sub {
  font-size: 13px;
  color: var(--text-2);
}

/* ===== Calendar strip ===== */
.nfl-cal-strip {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
  margin-top: 18px;
}
.nfl-cal-strip::-webkit-scrollbar { height: 6px; }
.nfl-cal-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.nfl-cal-tile {
  flex: 0 0 140px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex; flex-direction: column;
  gap: 4px;
  position: relative;
  transition: all .15s;
}
.nfl-cal-tile:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.nfl-cal-tile.past {
  opacity: 0.45;
}
.nfl-cal-tile.past .nfl-cal-cd { color: var(--muted); font-weight: 700; }
.nfl-cal-tile.live {
  border-color: rgba(40,214,112,0.45);
  background: rgba(40,214,112,0.05);
}
.nfl-cal-tile.live .nfl-cal-cd {
  color: var(--green);
  text-shadow: 0 0 12px rgba(40,214,112,0.5);
}
.nfl-cal-tile.next {
  border-color: rgba(255,170,0,0.5);
  background: rgba(255,170,0,0.06);
  box-shadow: 0 0 0 1px rgba(255,170,0,0.2);
}
.nfl-cal-tile.next .nfl-cal-cd { color: var(--amber); }

.nfl-cal-date {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.nfl-cal-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--text);
}
.nfl-cal-sub {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.3;
  flex: 1;
}
.nfl-cal-cd {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(0,0,0,0.2);
}

@media (max-width: 800px) {
  .nfl-cal-tile { flex: 0 0 130px; padding: 10px 12px; }
  .nfl-nextup-row { gap: 14px; }
}
