/* =============================================================
   Week 1 Game Page
   Inherits tokens + primitive button/chip styles from
   ../pll-schedule-hub/colors_and_type.css. All selectors here
   are prefixed with `w1-` to avoid leaking into the shared hub.
   ============================================================= */

:root {
  --w1-page-bg: #efefef;
  --w1-card-border: rgba(255, 255, 255, 0.1);
  --w1-fg-muted-on-dark: rgba(255, 255, 255, 0.72);
  --w1-fg-subtle-on-dark: rgba(255, 255, 255, 0.5);
  --w1-fg-muted: #595959;
  --w1-r-small: 8px;
  --w1-r-medium: 10px;
  --w1-r-large: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--pll-white);
  color: var(--pll-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.w1-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.w1-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* -------- Top bar (re-uses pll-schedule-hub patterns) -------- */
.topbar {
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
  background: var(--pll-white);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--pll-black); }
.topbar-logo { height: 22px; width: auto; }
.w1-brand-fallback {
  font-weight: var(--fw-xbold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .w1-brand-fallback { display: none; }
  .topbar-nav { gap: 14px; }
  .topbar-link { font-size: 11px; }
}
.topbar-nav { display: flex; gap: 20px; }
.topbar-link {
  color: var(--pll-black);
  text-decoration: none;
  font-size: 12px;
}
.topbar-link:hover { color: var(--gray-500); }

/* -------- Buttons (page-scoped; schedule-hub has its own .pll-btn) -------- */
.w1-btn {
  height: 52px;
  padding: 0 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--w1-r-small);
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.1s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.w1-btn--sm { height: 44px; font-size: 12px; padding: 0 20px; }
.w1-btn--primary { background: var(--pll-gold); color: var(--pll-black); }
.w1-btn--primary:hover { background: #ffd733; }
.w1-btn--outlined {
  background: transparent;
  color: var(--pll-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.w1-btn--outlined:hover { border-color: var(--pll-white); background: rgba(255, 255, 255, 0.05); }
.w1-btn--dark { background: var(--pll-black); color: var(--pll-white); }
.w1-btn--dark:hover { background: var(--gray-800); }
.w1-btn:active { transform: scale(0.98); }

/* Ensure keyboard focus rings are visible on every interactive element. */
.w1-btn:focus-visible,
.w1-card__btn:focus-visible,
.w1-card__calendar:focus-visible,
.w1-ticket-tile:focus-visible,
.w1-input:focus-visible {
  outline: 2px solid var(--pll-gold);
  outline-offset: 2px;
}

/* -------- Post-weekend banner -------- */
.w1-post-banner {
  background: var(--pll-gold);
  color: var(--pll-black);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  text-align: center;
}
.w1-post-banner a { color: var(--pll-black); text-decoration: underline; }

/* -------- Section title/eyebrow shared -------- */
.w1-section-eyebrow {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 8px;
}
.w1-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--fw-xbold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  max-width: 20ch;
  text-transform: uppercase;
}

/* =============================================================
   HERO
   ============================================================= */
.w1-hero {
  background: var(--pll-black);
  color: var(--pll-white);
  padding: 32px 0 28px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  /* Sized so the first schedule row peeks beneath the hero on a typical
     desktop viewport. Tighter top/bottom padding than mobile. */
  .w1-hero { padding: 40px 0 32px; min-height: 76vh; }
}
.w1-hero__media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero/zions-bank-sunset.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.w1-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.78) 100%);
}
.w1-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 96px);
  font-weight: var(--fw-xbold);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--pll-white);
  word-break: break-word;
  hyphens: auto;
}
.w1-hero__location {
  margin: -4px 0 0;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: var(--fw-bold, 700);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pll-white);
  opacity: 0.92;
}
.w1-hero__lockup {
  width: clamp(80px, 14vw, 200px);
  height: auto;
  margin: 0;
}
.w1-hero__content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.5vw, 24px);
}
.w1-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }

/* Live state */
.w1-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 14px 20px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: var(--w1-r-medium);
}
.w1-hero__live-dot { color: #ff3b30; font-size: 16px; animation: w1-pulse 1.6s ease-in-out infinite; }
@keyframes w1-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .w1-hero__live-dot { animation: none; } }
.w1-hero__live-label {
  color: var(--pll-white);
  font-weight: var(--fw-xbold);
  letter-spacing: 0.2em;
  font-size: 12px;
}

/* Countdown */
.w1-countdown {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 20px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--w1-r-large);
  padding: clamp(14px, 1.8vw, 22px) clamp(20px, 2.6vw, 36px);
  margin-top: 12px;
  max-width: 100%;
}
.w1-countdown__unit {
  text-align: center;
  /* Wide enough that two tabular digits can never touch the seps. */
  width: clamp(44px, 5.4vw, 78px);
  flex: 0 0 auto;
}
.w1-countdown__unit strong {
  display: block;
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: var(--fw-xbold);
  color: var(--pll-white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.w1-countdown__unit span {
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w1-fg-subtle-on-dark);
  display: block;
  margin-top: 8px;
}
.w1-countdown__unit--ms strong {
  color: var(--pll-white);
  opacity: 0.7;
}
.w1-countdown__sep {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: var(--fw-xbold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
  margin-bottom: clamp(14px, 1.6vw, 22px);
}

/* Sticky reminder CTA (after scroll past hero) */
.w1-sticky-reminder {
  position: fixed;
  top: 76px;
  right: 24px;
  z-index: 60;
  background: var(--pll-gold);
  color: var(--pll-black);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--fw-xbold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease;
}
.w1-sticky-reminder:hover { transform: translateY(-1px); }
@media (max-width: 720px) {
  .w1-sticky-reminder { top: auto; bottom: 16px; right: 16px; left: 16px; text-align: center; }
}

/* =============================================================
   SUMMARY STRIP
   ============================================================= */
.w1-summary {
  background: var(--w1-page-bg);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}
.w1-summary__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.w1-summary__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.w1-summary__stat { display: flex; flex-direction: column; }
.w1-summary__stat strong {
  font-size: 28px;
  font-weight: var(--fw-xbold);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.w1-summary__stat span {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* =============================================================
   MATCHUPS
   ============================================================= */
.w1-matchups { padding: 72px 0; background: var(--pll-white); }

.w1-matchup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
}

.w1-card {
  background: var(--pll-black);
  color: var(--pll-white);
  border-radius: var(--w1-r-large);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.w1-card--featured {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}
.w1-card--featured::after {
  content: 'OPENER';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pll-gold);
  color: var(--pll-black);
  font-size: 10px;
  font-weight: var(--fw-xbold);
  letter-spacing: 0.2em;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 3;
}
.w1-card--featured .w1-card__meta { padding-right: 72px; }

.w1-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w1-fg-subtle-on-dark);
  padding-right: 44px;
}
.w1-card__meta strong { color: var(--pll-white); font-weight: var(--fw-bold); }
.w1-card__meta--linear { color: var(--pll-gold) !important; }

.w1-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.w1-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.w1-team__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-xbold);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  background: var(--gray-800);
  color: var(--pll-white);
  overflow: hidden;
}
.w1-team__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.w1-team__abbrev { position: relative; z-index: 0; opacity: 0; }
.w1-team__logo img + .w1-team__abbrev { opacity: 0; }

/* Color fallbacks if team logo image is missing — match mockup. */
.w1-team__logo--archers { background: var(--team-archers-navy); border: 2px solid var(--team-archers-orange); }
.w1-team__logo--redwoods { background: var(--team-redwoods-green); }
.w1-team__logo--atlas { background: var(--team-atlas-navy); color: var(--team-atlas-blue); border: 2px solid var(--team-atlas-blue); }
.w1-team__logo--chaos { background: #000; color: var(--team-chaos-red); border: 2px solid var(--team-chaos-red); }
.w1-team__logo--outlaws { background: #000; color: var(--team-outlaws-orange); border: 2px solid var(--team-outlaws-orange); }
.w1-team__logo--waterdogs { background: var(--team-waterdogs-purple); }
.w1-team__logo--whipsnakes { background: #000; color: var(--team-whipsnakes-red); border: 2px solid var(--team-whipsnakes-red); }

.w1-team__name {
  font-size: 13px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  max-width: 12ch;
}
.w1-team__home-tag {
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pll-gold);
  margin-top: 2px;
}
.w1-card__vs {
  font-size: 14px;
  font-weight: var(--fw-xbold);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.w1-card__time {
  text-align: center;
  padding: 16px 0 8px;
  border-top: 1px solid var(--w1-card-border);
  border-bottom: 1px solid var(--w1-card-border);
}
.w1-card__time strong {
  font-size: 22px;
  font-weight: var(--fw-xbold);
  display: block;
  margin-bottom: 2px;
  font-variant-numeric: tabular-nums;
}
.w1-card__time span {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.6);
}

.w1-card__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.w1-card__btn {
  min-height: 48px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--w1-r-small);
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease;
  padding: 10px 12px;
  text-align: center;
}
.w1-card__btn--watch {
  background: var(--pll-gold);
  color: var(--pll-black);
}
.w1-card__btn--watch:hover { background: #ffd733; }
.w1-card__btn--tickets {
  background: transparent;
  color: var(--pll-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.w1-card__btn--tickets:hover { border-color: var(--pll-white); background: rgba(255, 255, 255, 0.05); }

.w1-card__calendar {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}
.w1-card__calendar:hover { border-color: var(--pll-white); color: var(--pll-white); }

/* =============================================================
   HOW TO WATCH
   ============================================================= */
.w1-htw { background: var(--w1-page-bg); padding: 72px 0; }
.w1-htw__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) { .w1-htw__grid { grid-template-columns: 1fr; } }

.w1-htw__card {
  background: var(--pll-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--w1-r-large);
  padding: 28px;
}
.w1-htw__card h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: var(--fw-xbold);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.2;
}
.w1-htw__card p {
  font-size: 15px;
  color: var(--w1-fg-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}
.w1-htw__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--fw-xbold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.w1-htw__badge--stream { background: var(--pll-black); color: var(--pll-gold); }
.w1-htw__badge--linear { background: var(--pll-gold); color: var(--pll-black); }

/* =============================================================
   TICKETS
   ============================================================= */
.w1-tickets { padding: 72px 0; background: var(--pll-white); }
.w1-tickets__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 720px) { .w1-tickets__tiles { grid-template-columns: 1fr; } }

.w1-ticket-tile {
  background: var(--w1-page-bg);
  border: 1px solid var(--gray-100);
  border-radius: var(--w1-r-large);
  padding: 24px;
  text-decoration: none;
  color: var(--pll-black);
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 180px;
}
.w1-ticket-tile:hover { border-color: var(--pll-black); transform: translateY(-2px); }
.w1-ticket-tile--dark {
  background: var(--pll-black);
  color: var(--pll-white);
  border-color: var(--pll-black);
}
.w1-ticket-tile--dark:hover { border-color: var(--pll-gold); }
.w1-ticket-tile--dark .w1-ticket-tile__meta { color: var(--pll-gold); }
.w1-ticket-tile--dark .w1-ticket-tile__games { color: rgba(255, 255, 255, 0.7); }
.w1-ticket-tile--dark .w1-ticket-tile__arrow { color: var(--pll-gold); }

.w1-ticket-tile h4 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: var(--fw-xbold);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.w1-ticket-tile__meta {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 8px;
}
.w1-ticket-tile__games {
  font-size: 13px;
  line-height: 1.5;
  color: var(--w1-fg-muted);
  margin: 0;
}
.w1-ticket-tile__arrow {
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.w1-ticket-tile__arrow::after { content: '→'; font-size: 16px; }

/* =============================================================
   EMAIL CAPTURE
   ============================================================= */
.w1-capture-section { padding: 48px 0; background: var(--pll-white); }

.w1-capture {
  background: var(--pll-black);
  color: var(--pll-white);
  border-radius: var(--w1-r-large);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.w1-capture::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 120px;
  background: var(--pll-gold);
}
.w1-capture__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) {
  .w1-capture__grid { grid-template-columns: 1fr; gap: 24px; }
  .w1-capture { padding: 28px 20px; }
}

.w1-capture__headline {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: var(--fw-xbold);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  text-transform: none;
  color: var(--pll-white);
}
.w1-capture__subhead {
  font-size: 15px;
  line-height: 1.5;
  color: var(--w1-fg-muted-on-dark);
  margin: 0;
  max-width: 44ch;
}

.w1-capture__form { display: flex; flex-direction: column; gap: 12px; }
.w1-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--pll-white);
  background: var(--gray-700);
  border: 1px solid var(--gray-700);
  border-radius: var(--w1-r-small);
  outline: none;
}
.w1-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.w1-input:focus { border-color: var(--pll-gold); }

.w1-capture__submit { width: 100%; height: 48px; font-size: 14px; }
.w1-capture__legal {
  font-size: 12px;
  line-height: 1.5;
  color: var(--w1-fg-subtle-on-dark);
  margin: 6px 0 0;
}
.w1-capture__error {
  font-size: 13px;
  color: #ff8080;
  margin: 0;
}
.w1-capture__confirm {
  padding: 20px 0;
  color: var(--pll-gold);
  font-weight: var(--fw-xbold);
  font-size: 18px;
  text-align: center;
}
.w1-capture__confirm strong { display: block; font-size: 22px; margin-bottom: 6px; }

/* =============================================================
   FAQ
   ============================================================= */
.w1-faq { padding: 72px 0; background: var(--w1-page-bg); }
.w1-faq__list { max-width: 720px; margin-top: 8px; }

.w1-faq details {
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.w1-faq summary {
  font-size: 18px;
  font-weight: var(--fw-bold);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.w1-faq summary::-webkit-details-marker { display: none; }
.w1-faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: var(--fw-regular);
  color: var(--gray-500);
  transition: transform 0.2s ease;
}
.w1-faq details[open] summary::after { content: '–'; }
.w1-faq p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--w1-fg-muted);
}

/* =============================================================
   FOOTER
   ============================================================= */
.w1-footer {
  background: var(--pll-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0;
  font-size: 13px;
}
.w1-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.w1-footer a:hover { color: var(--pll-gold); }
.w1-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

/* =============================================================
   TOAST
   ============================================================= */
.w1-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pll-black);
  color: var(--pll-white);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-md);
  z-index: 100;
  max-width: calc(100vw - 32px);
  text-align: center;
  border: 1px solid var(--pll-gold);
  animation: w1-toast-in 0.2s ease-out;
}
@keyframes w1-toast-in {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .w1-matchup-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .w1-hero { padding: 56px 0 48px; min-height: 90vh; display: flex; align-items: center; }
  .w1-matchup-grid { grid-template-columns: 1fr; }
  .w1-summary__stats { gap: 20px; }
  .w1-card__btn { min-height: 48px; }
  .w1-btn { min-height: 48px; height: auto; padding: 14px 24px; }
  .w1-section-title { margin-bottom: 24px; }
  .w1-matchups, .w1-htw, .w1-tickets, .w1-faq { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Schedule rows — full-width, 3-column layout (date · matchup · network),
   no team records, no per-row CTAs. The watch destination is communicated
   by the network logo on the right; the calendar action lives in its own
   section below. */
.w1-schedule { padding: 24px 0 8px; background: var(--pll-white); }
.w1-schedule__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 720px) {
  .w1-schedule { padding: 32px 0 8px; }
  .w1-schedule__inner { padding: 0 24px; }
}
.w1-schedule .row-team-record { display: none; }

/* Mobile schedule row — 2 rows (date+network on top, matchup centered below).
   Avoids the awkward stack of 3 full-width cells on small screens. */
.w1-schedule .w1-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "date  network"
    "match match";
  align-items: center;
  column-gap: 12px;
  row-gap: 14px;
  padding: 18px 0;
}
.w1-schedule .w1-row .row-date { grid-area: date; }
.w1-schedule .w1-row .row-teams { grid-area: match; }
.w1-schedule .w1-row .w1-row-network { grid-area: network; }
.w1-schedule .row-date {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  display: flex;
}
.w1-schedule .row-team-name { font-size: 15px; }
.w1-schedule .row-team .pll-meta { font-size: 12px; }
.w1-row-network {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}
.w1-row-network .net-lockup {
  background: transparent;
  border: 0;
  width: auto !important;
  height: auto !important;
}
.w1-row-network .net-lockup img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.w1-row-network__link {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  transition: transform 120ms, opacity 120ms;
}
.w1-row-network__link:hover { transform: translateY(-1px); opacity: 0.92; }
.w1-row-network__link:focus-visible {
  outline: 2px solid var(--pll-gold);
  outline-offset: 4px;
}

/* Bigger team logos than the hub default, with more breathing room
   between logo and team text. */
.w1-schedule .row-team { gap: 16px; }
.w1-schedule .row-team-logo { height: 48px; width: 48px; }
.w1-schedule .row-team--away .row-team-text { text-align: right; }
.w1-schedule .row-team--home .row-team-text { text-align: left; }

@media (min-width: 720px) {
  .w1-schedule .w1-row {
    grid-template-columns: 140px minmax(0, 1fr) 220px;
    grid-template-areas: none;
    column-gap: 28px;
    padding: 28px 0;
  }
  .w1-schedule .w1-row .row-date,
  .w1-schedule .w1-row .row-teams,
  .w1-schedule .w1-row .w1-row-network { grid-area: auto; }
  .w1-schedule .row-team { gap: 18px; }
  .w1-row-network .net-lockup img { height: 44px; }
  .w1-schedule .row-team-logo { height: 64px; width: 64px; }
}
@media (min-width: 1040px) {
  .w1-schedule .w1-row {
    grid-template-columns: 200px minmax(0, 1fr) 260px;
    column-gap: 40px;
  }
  .w1-schedule .row-team { gap: 22px; }
  .w1-row-network .net-lockup img { height: 52px; }
  .w1-schedule .row-team-logo { height: 72px; width: 72px; }
}

/* Calendar section — distinct from the schedule. */
.w1-calendar {
  background: var(--pll-black);
  color: var(--pll-white);
  padding: 48px 0 36px;
}
@media (min-width: 720px) {
  .w1-calendar { padding: 56px 0 40px; }
}
.w1-calendar__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.w1-calendar__title {
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--fw-xbold, 800);
  letter-spacing: -0.01em;
  margin: 0;
}
.w1-calendar__copy {
  max-width: 520px;
  margin: 0;
  color: var(--w1-fg-muted-on-dark);
  font-size: 16px;
  line-height: 1.5;
}
.w1-calendar .w1-btn {
  margin-top: 8px;
  min-width: 320px;
  justify-content: center;
}

