:root {
  --primary: #0079f2;
  --primary-dark: #004fd6;
  --secondary: #00a8ff;
  --accent: #d71920;
  --live: #9dff8f;
  --paper: #ffffff;
  --ink: #ffffff;
  --muted: #b7dcff;
  --shadow: rgba(0, 28, 90, 0.35);
  --wc26-stripe: linear-gradient(90deg, #00c8b8 0 18%, #c9ff19 18% 36%, #f6b63e 36% 54%, #f4375f 54% 72%, #1e5bff 72% 100%);
  --radius: 8px;
  --display-font: "FWC 2026", "Arial Black", Impact, Arial, sans-serif;
  --body-font: Inter, Arial, Helvetica, sans-serif;
  font-family: var(--body-font);
  color: var(--ink);
  background: #dcecf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.22), transparent 23rem),
    radial-gradient(circle at 92% 22%, rgba(0, 168, 255, 0.34), transparent 25rem),
    linear-gradient(135deg, #0045c7, var(--primary) 50%, #00a0f4);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 128px;
  padding: 18px 0 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: min(230px, 48vw);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.header-center {
  display: flex;
  justify-content: center;
  justify-self: end;
  min-width: 92px;
  min-height: 118px;
  padding: 10px;
  overflow: visible;
}

.cup-logo {
  display: block;
  width: clamp(50px, 5.8vw, 76px);
  height: auto;
  max-height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 28, 90, 0.28));
}

.hero {
  min-height: clamp(360px, 58vh, 620px);
  display: block;
  padding: 48px 0 12px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "WORLD CUP";
  position: absolute;
  z-index: -1;
  top: -42px;
  left: -8px;
  font-size: clamp(4.5rem, 15vw, 12rem);
  line-height: 0.85;
  font-weight: 1000;
  letter-spacing: 0;
  font-family: var(--display-font);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.eyebrow,
.section-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  font-family: var(--display-font);
  font-weight: 900;
  text-transform: uppercase;
}

.flag-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.flag {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 23px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65), 0 2px 7px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.flag-ca {
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Flag_of_Canada_%283-2%29.svg/1280px-Flag_of_Canada_%283-2%29.svg.png") center / cover no-repeat;
}

.flag-us {
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Flag_of_the_United_States_%2851_stars%29.svg/960px-Flag_of_the_United_States_%2851_stars%29.svg.png") center / cover no-repeat;
}

.flag-mx {
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Flag_of_Mexico.svg/1920px-Flag_of_Mexico.svg.png") center / cover no-repeat;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5.2vw, 4.4rem);
  line-height: 0.94;
  font-family: var(--display-font);
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subtitle {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-family: var(--display-font);
  font-weight: 950;
}

.description {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.calendar-section {
  padding: 10px 0 72px;
}

.availability-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(0, 66, 184, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.availability-note::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--live);
  box-shadow: 0 0 0 3px rgba(157, 255, 143, 0.12);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 380px);
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.92;
  font-weight: 1000;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--muted);
}

.calendar-note {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  line-height: 1.45;
  font-weight: 800;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: clamp(12px, 2vw, 22px);
  padding-block: 10px;
}

.calendar-slider {
  position: relative;
}

.slider-nav {
  display: none;
}

.day-tile {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(23, 145, 255, 0.86), rgba(0, 84, 213, 0.88) 58%, rgba(0, 45, 154, 0.94));
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -22px 36px rgba(0, 38, 126, 0.26),
    0 16px 30px rgba(0, 28, 98, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.day-tile::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(0, 39, 126, 0.12);
  pointer-events: none;
}

.day-tile::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 5px;
  border-radius: 999px;
  background: var(--wc26-stripe);
  opacity: 0.72;
}

.tile-football-outline {
  position: absolute;
  right: 14px;
  top: 18px;
  z-index: 0;
  width: 58%;
  height: 58%;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.12;
  pointer-events: none;
}

.tile-bookmaker {
  position: absolute;
  left: 13px;
  top: 13px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 31px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 31, 105, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.tile-bookmaker img {
  display: block;
  max-width: 82px;
  max-height: 22px;
  object-fit: contain;
}

.tile-bookmaker-text {
  font-size: 0.62rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
}

.tile-prize {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 31px;
  z-index: 1;
  display: block;
  padding: 4px 6px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(0, 42, 132, 0.22);
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  font-weight: 900;
  line-height: 1.12;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 34, 95, 0.34);
  backdrop-filter: blur(5px);
}

.day-tile:hover:not(:disabled) {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 38%),
    linear-gradient(145deg, rgba(32, 161, 255, 0.96), rgba(0, 100, 235, 0.94) 58%, rgba(0, 61, 183, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -18px 34px rgba(0, 42, 132, 0.2),
    0 22px 42px rgba(0, 31, 105, 0.26);
}

.day-tile:disabled {
  cursor: default;
}

.day-tile.future {
  opacity: 0.96;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(28, 158, 255, 0.8), rgba(0, 91, 218, 0.86) 58%, rgba(0, 58, 178, 0.92));
}

.day-tile.past {
  opacity: 0.52;
  filter: saturate(0.48) grayscale(0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 38%),
    linear-gradient(145deg, rgba(63, 113, 171, 0.5), rgba(43, 83, 143, 0.58) 58%, rgba(28, 62, 120, 0.68));
}

.day-tile.opened {
  border-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(0, 178, 221, 0.76), rgba(0, 96, 214, 0.84) 58%, rgba(0, 69, 181, 0.9));
}

.day-tile.preview-open.future {
  opacity: 1;
  border-color: rgba(157, 255, 143, 0.54);
  cursor: pointer;
}

.day-tile.today {
  border-color: rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 38%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(145deg, rgba(0, 205, 255, 1), rgba(0, 116, 248, 1) 56%, rgba(0, 68, 204, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -18px 34px rgba(0, 42, 132, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.16),
    0 0 0 9px rgba(119, 220, 255, 0.12),
    0 24px 44px rgba(0, 31, 105, 0.3);
  animation: todayPulse 1.75s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.day-tile.today::after {
  background: var(--wc26-stripe);
  opacity: 0.9;
}

.day-tile.today .tile-state {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 34, 95, 0.62);
}

.day-tile.today:not(.opened) .tile-state {
  padding: 4px 7px;
  border-radius: 999px;
  color: #073b28;
  background: rgba(157, 255, 143, 0.94);
  text-shadow: none;
  box-shadow: 0 8px 18px rgba(24, 92, 53, 0.24);
}

.tile-live-dot {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--live);
  box-shadow: 0 0 0 4px rgba(157, 255, 143, 0.15), 0 0 18px rgba(157, 255, 143, 0.72);
  animation: liveDotBlink 1.15s ease-in-out infinite;
}

@keyframes liveDotBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.46;
    transform: scale(0.78);
  }
}

.day-tile.opening,
.day-tile.today.opening {
  animation: tileOpen 680ms cubic-bezier(0.2, 0.74, 0.2, 1) forwards;
}

.day-tile.opening::before {
  border-color: rgba(255, 255, 255, 0.52);
}

@keyframes tileOpen {
  0% {
    transform: perspective(900px) rotateY(0deg) scale(1);
    filter: brightness(1);
  }
  44% {
    transform: perspective(900px) rotateY(-18deg) scale(1.04);
    filter: brightness(1.16);
  }
  72% {
    transform: perspective(900px) rotateY(8deg) scale(1.02);
  }
  100% {
    transform: perspective(900px) rotateY(0deg) scale(1);
    filter: brightness(1);
  }
}

@keyframes todayPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.56),
      inset 0 -18px 34px rgba(0, 42, 132, 0.18),
      0 0 0 4px rgba(255, 255, 255, 0.16),
      0 0 0 9px rgba(157, 255, 143, 0.1),
      0 22px 40px rgba(0, 31, 105, 0.3);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      inset 0 -18px 34px rgba(0, 42, 132, 0.16),
      0 0 0 5px rgba(255, 255, 255, 0.22),
      0 0 0 13px rgba(157, 255, 143, 0.18),
      0 26px 48px rgba(0, 31, 105, 0.36);
  }
}

.tile-number {
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  line-height: 0.82;
  font-family: var(--display-font);
  font-weight: 1000;
  letter-spacing: 0;
  color: #fff;
  text-shadow:
    0 5px 18px rgba(0, 35, 112, 0.36),
    7px 0 0 rgba(255, 255, 255, 0.22);
  transform: translateX(-5px);
}

.tile-date {
  position: absolute;
  right: 9px;
  bottom: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 34, 95, 0.45);
}

.tile-lock {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 22px;
  height: 22px;
  color: #fff;
  fill: currentColor;
  opacity: 0.96;
  filter: drop-shadow(0 3px 8px rgba(0, 31, 105, 0.32));
}

.tile-lock-open {
  opacity: 0.88;
}

.tile-lock-broken {
  opacity: 0.9;
}

.tile-lock-broken .lock-fill {
  fill: #fff;
  stroke: none;
}

.tile-lock-broken .lock-crack {
  fill: none;
  stroke: #0079f2;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-state {
  position: absolute;
  left: 9px;
  bottom: 8px;
  max-width: calc(100% - 76px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 34, 95, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 999px;
  background: #fff;
}

.legend-lock-open,
.legend-lock-closed,
.legend-lock-broken {
  width: 14px;
  height: 14px;
  color: #fff;
  fill: currentColor;
  filter: drop-shadow(0 2px 6px rgba(0, 31, 105, 0.22));
  flex: 0 0 auto;
}

.legend-lock-broken {
  fill: none;
}

.legend-lock-broken .lock-fill {
  fill: #fff;
  stroke: none;
}

.legend-lock-broken .lock-crack {
  fill: none;
  stroke: #0079f2;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legend-dot.today {
  background: var(--live);
  box-shadow: 0 0 0 3px rgba(157, 255, 143, 0.14);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 36px;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
  text-decoration: none;
}

.gift-dialog {
  width: min(560px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: #071b42;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.gift-dialog[open] {
  animation: dialogEnter 260ms cubic-bezier(0.2, 0.76, 0.2, 1);
}

.gift-dialog::backdrop {
  background: rgba(0, 18, 55, 0.62);
  backdrop-filter: blur(6px);
}

.gift-dialog[open]::backdrop {
  animation: backdropEnter 260ms ease;
}

.gift-dialog[open] .dialog-card {
  animation: dialogCardEnter 340ms cubic-bezier(0.2, 0.76, 0.2, 1);
}

@keyframes dialogEnter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dialogCardEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backdropEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dialog-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.dialog-card::before {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -24px;
  width: 230px;
  height: 230px;
  opacity: 0.055;
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%230071f2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 24h36v10a18 18 0 0 1-36 0V24Zm0 7H20c0 10 6 18 15 20m33-20h12c0 10-6 18-15 20M50 52v16m-15 8h30m-24-8h18'/%3E%3C/svg%3E");
}

.dialog-card > * {
  position: relative;
  z-index: 1;
}

.dialog-bookmaker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--primary-dark);
  font-weight: 1000;
}

.dialog-bookmaker img {
  display: block;
  max-width: 148px;
  max-height: 42px;
  object-fit: contain;
}

.dialog-bookmaker > span:first-child {
  font-size: 0.86rem;
  text-transform: uppercase;
}

.dialog-prize {
  padding-left: 10px;
  border-left: 1px solid rgba(0, 79, 214, 0.18);
  color: #344361;
  font-size: 0.86rem;
}

.dialog-topline {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.dialog-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  line-height: 1;
}

.dialog-card p {
  color: #344361;
  line-height: 1.55;
}

.dialog-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.promo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  border: 2px dashed var(--primary);
  color: var(--primary-dark);
  font-weight: 1000;
  word-break: break-word;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.promo-reminder {
  max-width: 260px;
  color: #61708c;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.button-primary,
.button-secondary,
.copy-button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 1000;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  text-decoration: none;
}

.button-secondary,
.copy-button {
  color: var(--primary-dark);
  background: #e9f4ff;
}

.icon-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #071b42;
  background: rgba(7, 27, 66, 0.08);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gift-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.gift-form input,
.gift-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  border: 1px solid #cbd8ea;
  border-radius: var(--radius);
}

.gift-form textarea {
  min-height: 90px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: var(--primary-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, minmax(104px, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 32px, 560px);
  }

  .promo-reminder {
    max-width: 100%;
    font-size: 0.84rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 118px;
  }

  .header-center {
    justify-self: end;
    min-width: 78px;
    min-height: 96px;
    padding: 8px;
  }

  .cup-logo {
    width: clamp(46px, 12vw, 58px);
    height: auto;
    max-height: 76px;
  }

  .hero {
    padding-top: 4px;
  }

  .hero-copy::before {
    top: -26px;
    left: -4px;
  }

  h1 {
    font-size: clamp(1.9rem, 9.2vw, 3.25rem);
    line-height: 0.92;
  }

  .subtitle {
    margin-bottom: 12px;
    font-size: clamp(1.05rem, 5.8vw, 1.65rem);
  }

  .description {
    font-size: clamp(0.9rem, 3.8vw, 1.02rem);
    line-height: 1.44;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: clamp(0.78rem, 4.1vw, 0.95rem);
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .calendar-section {
    padding-top: 0;
    padding-bottom: 44px;
  }

  .availability-note {
    margin-bottom: 8px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .calendar-grid {
    --slide-width: min(72vw, 280px);
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    margin-inline: 0;
    padding: 14px calc((100% - var(--slide-width)) / 2) 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: calc((100% - var(--slide-width)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .calendar-grid::-webkit-scrollbar {
    display: none;
  }

  .day-tile {
    flex: 0 0 var(--slide-width);
    border-radius: 12px;
    scroll-snap-align: center;
  }

  .day-tile::before {
    inset: 5px;
    border-radius: 9px;
  }

  .tile-football-outline {
    right: 12px;
    top: 16px;
    width: 58%;
    height: 58%;
  }

  .tile-bookmaker {
    left: 11px;
    top: 11px;
    min-width: 82px;
    height: 34px;
    padding: 5px 8px;
  }

  .tile-bookmaker img {
    max-width: 94px;
    max-height: 25px;
  }

  .tile-prize {
    bottom: 34px;
    font-size: clamp(0.68rem, 3.2vw, 0.78rem);
  }

  .tile-lock {
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
  }

  .tile-live-dot {
    top: 14px;
    right: 14px;
    width: 12px;
    height: 12px;
  }

  .tile-number {
    font-size: clamp(4.6rem, 28vw, 6.6rem);
  }

  .tile-state {
    max-width: calc(100% - 70px);
    font-size: clamp(0.64rem, 3.2vw, 0.78rem);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.05;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
    font-size: 0.86rem;
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .site-footer a {
    font-size: 0.95rem;
  }

  .slider-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 69, 190, 0.62);
    box-shadow: 0 12px 26px rgba(0, 31, 105, 0.28);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
  }

  .slider-nav-prev {
    left: -2px;
  }

  .slider-nav-next {
    right: -2px;
  }

  .calendar-slider::before,
  .calendar-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 42px;
    pointer-events: none;
  }

  .calendar-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary), transparent);
  }

  .calendar-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--primary), transparent);
  }

  .legend {
    gap: 8px 12px;
    margin-top: 4px;
    font-size: 0.72rem;
  }

  .legend-dot {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 430px) {
  .header-center {
    justify-self: end;
    min-width: 70px;
    min-height: 88px;
    padding: 8px;
  }

  .cup-logo {
    width: 50px;
    height: auto;
    max-height: 70px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 108px;
  }

  .header-center {
    justify-self: end;
  }

}

@media (max-width: 420px) {
  .calendar-grid {
    --slide-width: min(76vw, 260px);
  }

}

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