:root {
  --bg: #f6f8fc;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --line: #dfe6f3;
  --line-strong: #cfd8ea;
  --text: #14213d;
  --text-soft: #55637f;
  --blue: #2f6cff;
  --blue-strong: #1e54d8;
  --blue-soft: #eef4ff;
  --gold: #f3b336;
  --gold-soft: #fff7e6;
  --mint: #23b6a6;
  --mint-soft: #ebfbf8;
  --shadow-lg: 0 24px 60px rgba(16, 42, 96, 0.12);
  --shadow-md: 0 18px 38px rgba(16, 42, 96, 0.08);
  --shadow-sm: 0 8px 20px rgba(16, 42, 96, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1320px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 15%, rgba(110, 154, 255, 0.13), transparent 17%),
    radial-gradient(circle at 0% 0%, rgba(110, 154, 255, 0.1), transparent 23%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
.site-shell { position: relative; overflow: clip; }
.card {
  background: var(--surface);
  border: 1px solid rgba(207, 216, 234, 0.7);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(207, 216, 234, 0.72);
  backdrop-filter: blur(16px);
}
.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand__logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}
.brand__logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 14px rgba(47, 108, 255, 0.15));
}
.brand__copy { display: grid; gap: 2px; }
.brand__copy strong { font-size: 1.05rem; line-height: 1; }
.brand__copy small { color: var(--blue); font-weight: 700; letter-spacing: 0.03em; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 600;
  color: var(--text-soft);
}
.site-nav a {
  position: relative;
  padding: 6px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  justify-self: end;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: flex;
  align-items: center;
  padding: 34px 0 40px;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(68, 118, 255, 0.11), transparent 0 22%),
    radial-gradient(circle at 10% 80%, rgba(68, 118, 255, 0.08), transparent 0 24%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,248,252,0.96));
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.hero__eyebrow,
.pill,
.info-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}
.hero__content h1 {
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  line-height: 0.95;
  margin: 22px 0 20px;
  letter-spacing: -0.05em;
  max-width: 10ch;
}
.hero__lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 62ch;
  margin: 0 0 30px;
}
.hero__actions,
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__stats { margin-top: 28px; }
.stat-card {
  min-width: 160px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(207, 216, 234, 0.7);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 4px;
}
.stat-card span { color: var(--text-soft); }

.hero__visual {
  position: relative;
  padding: 30px 0 40px 28px;
}
.hero__image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(207, 216, 234, 0.7);
  box-shadow: var(--shadow-lg);
  background: #fff;
  min-height: 520px;
}
.hero__image-card::before,
.hero__image-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero__image-card::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(18,31,62,0.06), rgba(18,31,62,0));
}
.hero__image-card::after {
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(18,31,62,0), rgba(18,31,62,0.22));
}
.hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.08 / 1;
}
.match-float {
  right: -10px;
  bottom: 0;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(207, 216, 234, 0.8);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.match-float__head,
.match-float__teams,
.mini-odds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.match-float__group { color: var(--text-soft); font-weight: 700; }
.match-float__teams { margin: 18px 0 14px; }
.match-float__teams div {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}
.flag { font-size: 1.9rem; }
.vs {
  color: var(--text-soft);
  font-weight: 700;
  align-self: center;
}
.match-float__meta {
  color: var(--text-soft);
  margin: 0 0 18px;
  line-height: 1.5;
}
.mini-odds div {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fdfefe;
}
.mini-odds small {
  display: block;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.mini-odds strong { font-size: 1.2rem; }

.section {
  padding: 26px 0 92px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.kicker {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.section-heading h2,
.story__body h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.text-link {
  color: var(--blue);
  font-weight: 700;
}
.text-link:hover,
.text-link:focus-visible { color: var(--blue-strong); }

.carousel-controls {
  display: inline-flex;
  gap: 12px;
}
.carousel-button {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.carousel-button:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.carousel-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }

.groups-carousel {
  overflow: hidden;
  padding-bottom: 2px;
}
.groups-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.groups-track::-webkit-scrollbar { display: none; }
.group-card {
  scroll-snap-align: start;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(207, 216, 234, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.group-card h3 { margin: 0 0 18px; font-size: 1.25rem; }
.group-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.group-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-weight: 500;
}
.group-card li span { font-size: 1.15rem; }

.odds-table {
  border-radius: 28px;
  overflow: hidden;
}
.odds-table__row {
  display: grid;
  grid-template-columns: minmax(180px, 1.7fr) 0.8fr 0.9fr 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(223, 230, 243, 0.86);
}
.odds-table__row:last-child { border-bottom: 0; }
.odds-table__row--head {
  background: #fbfcff;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}
.team {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.delta {
  font-weight: 700;
}
.delta--up { color: #1d9b5d; }
.delta--down { color: #e05669; }
.sparkline {
  width: 96px;
  height: 28px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.sparkline--rise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='28' viewBox='0 0 96 28'%3E%3Cpath d='M1 22 C15 22 14 12 29 12 S42 23 54 18 70 5 82 9 88 5 95 2' fill='none' stroke='%2320aa65' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.sparkline--fall {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='28' viewBox='0 0 96 28'%3E%3Cpath d='M1 9 C15 9 18 19 29 19 S42 7 54 12 70 25 82 18 89 20 95 10' fill='none' stroke='%23f06374' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-radius: 28px;
}
.story__icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7faff, #edf4ff);
  color: var(--blue);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.story__icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.story__content-wrap {
  max-height: none;
  overflow: visible;
  position: relative;
}
.story__content {
  color: var(--text-soft);
  line-height: 1.8;
}

.schedule {
  border-radius: 28px;
  overflow: hidden;
}
.schedule-row {
  display: grid;
  grid-template-columns: 190px minmax(240px, 1fr) minmax(200px, 0.9fr);
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(223, 230, 243, 0.86);
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row__time strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.schedule-row__time span,
.schedule-row__place { color: var(--text-soft); }
.schedule-row__match {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-weight: 600;
}
.schedule-row__match b { color: var(--text-soft); font-weight: 700; }

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.ticket-card {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(207, 216, 234, 0.8);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.95);
}
.ticket-card--blue { background: linear-gradient(180deg, #f8fbff, #ffffff); }
.ticket-card--gold { background: linear-gradient(180deg, #fff9ed, #ffffff); }
.ticket-card--mint { background: linear-gradient(180deg, #f1fdfb, #ffffff); }
.ticket-card__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.ticket-card__top p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ticket-card__top strong {
  font-size: 2rem;
  line-height: 1;
}
.ticket-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
  color: var(--text-soft);
}
.ticket-card li {
  display: flex;
  gap: 10px;
  align-items: start;
}
.ticket-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}
.ticket-card--gold li::before { color: #c68b12; }
.ticket-card--mint li::before { color: var(--mint); }
.ticket-card--featured {
  transform: translateY(-8px);
  box-shadow: 0 30px 68px rgba(170, 113, 16, 0.16);
}
.featured-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--gold);
  color: #5c3900;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 12px;
}

.broadcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 0.8fr));
  gap: 18px;
}
.broadcast-lead,
.broadcast-card {
  border-radius: 28px;
  overflow: hidden;
}
.broadcast-lead__media {
  position: relative;
  min-height: 100%;
}
.broadcast-lead__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.broadcast-lead__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 128px;
  background: linear-gradient(180deg, rgba(11,20,46,0), rgba(11,20,46,0.62));
}
.live-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: #ff304a;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
}
.play-button svg {
  width: 40px;
  height: 40px;
  fill: var(--text);
  margin-left: 4px;
}
.broadcast-lead__footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fff;
}
.broadcast-lead__footer strong { font-size: 1.2rem; }
.broadcast-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}
.broadcast-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}
.broadcast-card p {
  margin: 0 0 24px;
  line-height: 1.7;
  color: var(--text-soft);
}

.footer {
  padding: 30px 0 24px;
  border-top: 1px solid rgba(207, 216, 234, 0.72);
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(16px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.footer__text {
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 34ch;
}
.footer h3 {
  margin: 6px 0 16px;
  font-size: 1rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer li a {
  color: var(--text-soft);
}
.footer li a:hover { color: var(--text); }
.footer__bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(207, 216, 234, 0.72);
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--full { width: 100%; }
.button--primary {
  background: linear-gradient(180deg, #3874ff, #2f6cff);
  color: #fff;
  box-shadow: 0 18px 30px rgba(47, 108, 255, 0.22);
}
.button--primary:hover { box-shadow: 0 22px 36px rgba(47, 108, 255, 0.28); }
.button--secondary,
.button--line {
  background: rgba(255,255,255,0.92);
  border-color: var(--line);
  color: var(--text);
}
.button--secondary:hover,
.button--line:hover { border-color: var(--line-strong); }

@media (max-width: 1180px) {
  .hero__grid,
  .broadcast-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero__content h1 { max-width: none; }
  .hero__visual { padding: 14px 0 60px; }
  .match-float { right: 18px; }
  .ticket-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .odds-table__row,
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }
  .odds-table__row--head { display: none; }
  .story { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .topbar__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .menu-toggle { display: inline-block; }
  .site-nav,
  .topbar__cta {
    display: none;
  }
  .topbar.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    justify-content: stretch;
    padding: 10px 0 18px;
  }
  .topbar.is-open .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(223, 230, 243, 0.82);
  }
  .topbar.is-open .topbar__cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 18px;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .groups-track {
    grid-auto-columns: minmax(220px, 88%);
  }
}

@media (max-width: 720px) {
  :root { --container: min(100vw - 24px, 1320px); }
  .hero { padding-top: 22px; }
  .hero__content h1 { font-size: 2.7rem; }
  .hero__lead { font-size: 1rem; }
  .hero__image-card { min-height: 360px; border-radius: 24px; }
  .match-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -34px;
  }
  .section { padding-bottom: 74px; }
  .section-heading {
    flex-direction: column;
    align-items: start;
  }
  .ticket-grid { grid-template-columns: 1fr; }
  .ticket-card--featured { transform: none; }
  .broadcast-card { min-height: auto; }
  .footer__grid { gap: 16px; }
}
.table-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(207, 216, 234, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.table-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(223, 230, 243, 0.86);
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.table-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.table-card__top h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.table-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid rgba(47, 108, 255, 0.12);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.styled-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: #fbfcff;
  border-bottom: 1px solid rgba(223, 230, 243, 0.86);
}

.styled-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(223, 230, 243, 0.82);
  vertical-align: middle;
  color: var(--text);
}

.styled-table tbody tr:last-child td {
  border-bottom: 0;
}

.styled-table tbody tr {
  transition: background 0.2s ease;
}

.styled-table tbody tr:hover {
  background: rgba(238, 244, 255, 0.45);
}

.styled-table tbody td:first-child,
.styled-table thead th:first-child {
  width: 64px;
}

.table-team {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.table-team__flag {
  font-size: 1.15rem;
  line-height: 1;
}

.table-team__name {
  font-weight: 600;
}

.table-delta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.table-delta--up {
  color: #1d9b5d;
  background: rgba(29, 155, 93, 0.1);
}

.table-delta--down {
  color: #e05669;
  background: rgba(224, 86, 105, 0.1);
}

.table-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue);
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.table-action:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.table-note {
  margin: 0;
  padding: 18px 24px 24px;
  color: var(--text-soft);
  line-height: 1.7;
  border-top: 1px solid rgba(223, 230, 243, 0.82);
  background: linear-gradient(180deg, rgba(251, 252, 255, 0.75), rgba(255, 255, 255, 0.92));
}

@media (max-width: 920px) {
  .table-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .styled-table thead th,
  .styled-table tbody td {
    padding: 16px 18px;
  }
}

/* Group pages and navigation dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 24px;
  z-index: 1;
}
.nav-dropdown__toggle {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-dropdown__toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown__toggle:focus-visible { color: var(--text); }
.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown__toggle:focus-visible::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after { transform: scaleX(1); }
.nav-dropdown.is-open .nav-dropdown__toggle svg,
.nav-dropdown:hover .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(207, 216, 234, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible,
.nav-dropdown__menu a[aria-current="page"] {
  background: var(--blue-soft);
  color: var(--blue);
}
.group-card {
  color: inherit;
}
.story__content figure {
  margin: 28px 0;
}
.story__content figure picture,
.story__content figure img {
  width: 100%;
}
.story__content figure img {
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(207, 216, 234, 0.8);
  box-shadow: var(--shadow-sm);
}
.story__content figcaption {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
  text-align: center;
}
.story__content ol,
.story__content ul {
  padding-left: 1.35rem;
}
.story__content li {
  margin: 0.35rem 0;
}

@media (max-width: 920px) {
  .topbar.is-open .site-nav .nav-dropdown::before { display: none; }
  .topbar.is-open .site-nav .nav-dropdown {
    display: grid;
    width: 100%;
    border-bottom: 1px solid rgba(223, 230, 243, 0.82);
  }
  .topbar.is-open .site-nav .nav-dropdown__toggle {
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
  }
  .topbar.is-open .site-nav .nav-dropdown__toggle::after {
    display: none;
  }
  .topbar.is-open .site-nav .nav-dropdown__menu {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: none;
    border-radius: 16px;
    padding: 10px;
    margin: 0 0 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .topbar.is-open .site-nav .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }
}


/* Team preview pages */
.nav-dropdown--teams .nav-dropdown__menu {
  width: min(860px, calc(100vw - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: min(70vh, 620px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.team-hero .hero__content h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 4.4vw, 4.65rem);
  line-height: 1;
}
.team-hero .hero__lead { max-width: 760px; }
.intro-block {
  margin: 0 0 26px;
  padding: 22px 24px;
  border: 1px solid rgba(207, 216, 234, 0.82);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff, #ffffff);
  color: var(--text);
}
.team-story h2 { margin-top: 34px; }
.team-story h2:first-child { margin-top: 0; }
.team-story h3 {
  margin: 26px 0 10px;
  font-size: 1.2rem;
  color: var(--text);
}
.team-story .table-card { margin: 22px 0 28px; }
.team-content-figure { margin: 26px 0 28px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.team-card-link h3 { line-height: 1.2; }
.team-card-link ul li span:first-child {
  min-width: 44px;
  color: var(--blue);
  font-weight: 800;
}
@media (max-width: 1180px) {
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nav-dropdown--teams .nav-dropdown__menu { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .topbar.is-open .site-nav .nav-dropdown--teams .nav-dropdown__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 48vh;
    overflow-y: auto;
  }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .team-grid { grid-template-columns: 1fr; }
  .topbar.is-open .site-nav .nav-dropdown--teams .nav-dropdown__menu { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .team-hero .hero__content h1 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    letter-spacing: -0.045em;
  }
}


/* Host city guide pages */
.nav-dropdown--cities .nav-dropdown__menu {
  width: min(760px, calc(100vw - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: min(70vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.city-hero .hero__content h1 {
  max-width: 860px;
}
.city-story .styled-table tbody td:first-child,
.city-story .styled-table thead th:first-child {
  width: auto;
}
.city-toc {
  columns: 2;
  column-gap: 34px;
}
.city-toc a {
  color: var(--blue);
  font-weight: 700;
}
.city-toc a:hover,
.city-toc a:focus-visible {
  color: var(--blue-strong);
}
.city-content-figure img {
  aspect-ratio: 14 / 9;
  object-fit: cover;
}
.city-faq {
  display: grid;
  gap: 14px;
  margin: 20px 0 28px;
}
.city-faq__item {
  border: 1px solid rgba(207, 216, 234, 0.82);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfdff, #ffffff);
  padding: 20px 22px;
}
.city-faq__item h3 {
  margin-top: 0;
}
.city-faq__item p {
  margin-bottom: 0;
}
.city-related-grid {
  margin: 18px 0 30px;
}
.city-resource-card span:first-child,
.city-card-link span:first-child {
  min-width: 64px;
  color: var(--blue);
  font-weight: 800;
}
.city-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  border-radius: 28px;
}
.city-cta h2 {
  margin: 0 0 12px;
}
.city-cta p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1180px) {
  .nav-dropdown--cities .nav-dropdown__menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .topbar.is-open .site-nav .nav-dropdown--cities .nav-dropdown__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 46vh;
    overflow-y: auto;
  }
  .city-cta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .city-toc {
    columns: 1;
  }
  .topbar.is-open .site-nav .nav-dropdown--cities .nav-dropdown__menu {
    grid-template-columns: 1fr;
  }
}


/* Stadium guide pages */
.nav-dropdown--stadiums .nav-dropdown__menu {
  width: min(900px, calc(100vw - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: min(70vh, 620px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.stadium-hero .hero__content h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 4.2vw, 4.55rem);
  line-height: 1;
}
.stadium-hero .hero__lead { max-width: 790px; }
.stadium-story .styled-table tbody td:first-child,
.stadium-story .styled-table thead th:first-child {
  width: auto;
}
.stadium-toc {
  margin-bottom: 28px;
}
.stadium-content-figure img {
  aspect-ratio: 14 / 9;
  object-fit: cover;
}
.stadium-table {
  margin: 22px 0 28px;
}
.stadium-related-grid {
  margin: 18px 0 30px;
}
.stadium-cta {
  margin-top: 36px;
}
.stadium-hub-card h3 {
  line-height: 1.2;
}
@media (max-width: 1180px) {
  .nav-dropdown--stadiums .nav-dropdown__menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .topbar.is-open .site-nav .nav-dropdown--stadiums .nav-dropdown__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 46vh;
    overflow-y: auto;
  }
}
@media (max-width: 620px) {
  .topbar.is-open .site-nav .nav-dropdown--stadiums .nav-dropdown__menu {
    grid-template-columns: 1fr;
  }
}


/* Dedicated 2026 guide page additions */
.page-story .table-card {
  margin: 22px 0 28px;
}

.page-story .styled-table tbody td:first-child,
.page-story .styled-table thead th:first-child {
  width: auto;
}

.page-toc {
  margin-bottom: 28px;
}

.page-content-figure {
  margin: 28px 0 0;
}

.page-content-figure img {
  aspect-ratio: 14 / 9;
  object-fit: cover;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.ticket-safety-block {
  margin-bottom: 26px;
}

.schedule-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
}

.schedule-flow::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 68px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--gold));
  opacity: 0.45;
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 22px 18px;
  border: 1px solid rgba(207, 216, 234, 0.82);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.95));
  box-shadow: var(--shadow-sm);
}

.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(47,108,255,0.22);
}

.flow-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.flow-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

.broadcast-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.broadcast-source-card {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.broadcast-source-card:hover,
.broadcast-source-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.broadcast-source-card img {
  width: 100%;
  aspect-ratio: 900 / 620;
  object-fit: cover;
}

.broadcast-source-card__body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.broadcast-source-card__body strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.broadcast-source-card__body em {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.6;
}

.broadcast-source-card__body b {
  color: var(--blue);
  font-size: 0.94rem;
}

@media (max-width: 1180px) {
  .schedule-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .schedule-flow::before {
    display: none;
  }

  .broadcast-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .schedule-flow,
  .broadcast-card-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: auto;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }
}

.hero__visual--page {
  padding: 18px 0 26px 18px;
}
.hero__image-card--page {
  min-height: 0;
  aspect-ratio: 14 / 9;
}
.hero__image-card--page .hero__image--page,
.hero__image-card--page > .hero__image--page {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 980px) {
  .hero__visual--page {
    padding: 8px 0 24px;
  }
}


/* Second-round navigation and schedule improvements */
.inline-anchor {
  color: var(--blue);
  font-weight: 800;
  border-bottom: 1px solid rgba(47,108,255,0.28);
}
.inline-anchor:hover,
.inline-anchor:focus-visible {
  color: var(--blue-strong);
  border-bottom-color: currentColor;
}
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.link-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(207, 216, 234, 0.84);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.94));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.link-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -52% 38%;
  height: 120px;
  background: radial-gradient(circle, rgba(47,108,255,.15), transparent 60%);
  pointer-events: none;
}
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47,108,255,.28);
}
.link-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--blue-soft);
  font-size: 1.35rem;
}
.link-card strong {
  font-size: 1.18rem;
  line-height: 1.2;
}
.link-card em {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.6;
}
.link-card b {
  margin-top: auto;
  color: var(--blue);
  font-size: .94rem;
}
.toc-card {
  margin: 0 0 28px;
  padding: 24px;
  border-radius: 28px;
}
.toc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.toc-card__head span {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .82rem;
}
.toc-card__head strong {
  font-size: 1.18rem;
}
.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.toc-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-soft);
  font-weight: 700;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.toc-links a:hover,
.toc-links a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue);
  border-color: rgba(47,108,255,.22);
}
.table-vs {
  color: var(--text-soft);
  margin: 0 8px;
}
.schedule-table td:nth-child(5) {
  min-width: 340px;
}
.broadcast-card-grid--sources {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.broadcast-card-grid--sources .broadcast-source-card {
  min-height: 210px;
}
.broadcast-card-grid--sources .broadcast-source-card__body {
  min-height: 210px;
}
.broadcast-card-grid--sources .broadcast-source-card__body b {
  margin-top: auto;
}
@media (max-width: 1180px) {
  .link-card-grid,
  .broadcast-card-grid--sources { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .link-card-grid,
  .broadcast-card-grid--sources { grid-template-columns: 1fr; }
  .link-card { min-height: auto; }
  .toc-card__head { align-items: flex-start; flex-direction: column; }
}

/* Restored homepage long text with preview/read-more */
.section--longread {
  padding-top: clamp(34px, 5vw, 72px);
}
.home-longread {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(207,216,234,.9);
  background:
    radial-gradient(circle at 8% 0%, rgba(47,108,255,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.95));
  overflow: hidden;
}
.home-longread::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -12%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,198,92,.18), transparent 68%);
  pointer-events: none;
}
.section-heading--longread {
  position: relative;
  z-index: 1;
}
.readmore-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 980px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(207,216,234,.78);
  box-shadow: var(--shadow-sm);
}
.readmore-preview p,
.readmore-content p {
  color: var(--text-soft);
  line-height: 1.82;
}
.readmore-details {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}
.readmore-details summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  cursor: pointer;
  outline: none;
}
.readmore-details summary::-webkit-details-marker { display: none; }
.readmore-close { display: none; }
.readmore-details[open] .readmore-open { display: none; }
.readmore-details[open] .readmore-close { display: inline-flex; }
.readmore-content {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 1040px;
}
.readmore-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.18;
  color: var(--text);
}
.readmore-content h2:first-child { margin-top: 0; }
.readmore-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  color: var(--text);
}
.readmore-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}
.readmore-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-soft);
  line-height: 1.65;
}
.readmore-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
}
.table-card--article {
  margin: 24px 0 34px;
}
@media (max-width: 720px) {
  .home-longread { padding: 20px; }
  .readmore-preview { padding: 18px; }
  .readmore-details summary { width: 100%; }
  .readmore-details summary .button { justify-content: center; width: 100%; }
}


/* Article layout repair for guide pages */
.story--article-clean {
  padding: clamp(24px, 3vw, 42px);
}
.story--article-clean .story__content > h2 {
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid rgba(223, 230, 243, 0.86);
  color: var(--text);
}
.story--article-clean .story__content > h2:first-of-type {
  margin-top: 26px;
}
.story--article-clean .story__content > h3 {
  margin-top: 24px;
  color: var(--text);
}
.story--article-clean .story__content > p {
  margin: 0 0 16px;
}
.story--article-clean .toc-card {
  border: 1px solid rgba(207, 216, 234, 0.88);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.96));
  box-shadow: var(--shadow-sm);
}
.story--article-clean .table-wrap {
  margin: 20px 0 24px;
  border: 1px solid rgba(207, 216, 234, 0.82);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.story--article-clean .check-list {
  margin: 18px 0 26px;
  padding: 22px 24px;
  border: 1px solid rgba(207, 216, 234, 0.82);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.94));
}

/* === HHOjC affiliate buttons === */
.affiliate-strip { margin: clamp(22px, 4vw, 52px) 0; }
.affiliate-panel {
  position: relative; overflow: hidden; display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px; align-items: center; padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl, 28px);
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 108, 255, 0.16), transparent 32%),
    radial-gradient(circle at 100% 95%, rgba(243, 179, 54, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,244,255,0.92));
  box-shadow: 0 22px 52px rgba(15, 35, 80, 0.12);
}
.affiliate-panel::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(47, 108, 255, 0.12);
  border-radius: calc(var(--radius-xl, 28px) - 10px); pointer-events: none;
}
.affiliate-panel__copy { position: relative; z-index: 1; }
.affiliate-panel__copy h2 {
  margin: 0 0 10px; font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05; letter-spacing: -0.04em; color: var(--text, #15213d);
}
.affiliate-panel__copy p:not(.kicker) {
  margin: 0; color: var(--text-soft, #475569); line-height: 1.65; max-width: 64ch;
}
.affiliate-panel__actions {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 14px;
}
.VgIrpkub {
  position: relative; isolation: isolate; display: inline-flex !important;
  align-items: center; justify-content: center; min-height: 58px; padding: 0 26px;
  border: 1px solid rgba(47, 108, 255, 0.28); border-radius: 999px; overflow: hidden;
  color: #ffffff !important; font-weight: 850; letter-spacing: 0.01em; text-align: center;
  text-transform: none; text-decoration: none !important;
  background: linear-gradient(135deg, #5a8cff 0%, #2f6cff 52%, #1e54d8 100%);
  box-shadow: 0 18px 36px rgba(47, 108, 255, 0.24), inset 0 1px 0 rgba(255,255,255,0.34);
  cursor: pointer; user-select: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}
.VgIrpkub::before {
  content: ""; position: absolute; inset: 1px; z-index: -1; border-radius: inherit;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 38%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.32), transparent 24%);
  opacity: 0.9;
}
.VgIrpkub::after {
  content: "↗"; display: inline-grid; place-items: center; width: 26px; height: 26px;
  margin-left: 10px; border-radius: 999px; background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24); font-size: 0.94rem;
  transition: transform 0.18s ease, background 0.18s ease;
}
.VgIrpkub:hover, .VgIrpkub:focus-visible {
  transform: translateY(-2px); border-color: rgba(47, 108, 255, 0.42);
  box-shadow: 0 24px 42px rgba(47, 108, 255, 0.30), inset 0 1px 0 rgba(255,255,255,0.38);
  outline: none;
}
.VgIrpkub:hover::after, .VgIrpkub:focus-visible::after {
  transform: translate(2px, -2px); background: rgba(255,255,255,0.26);
}
.VgIrpkub:active { transform: translateY(0); }
.VgIrpkub[data-offer="register"] {
  background: linear-gradient(135deg, #f8c557 0%, #f3b336 45%, #df9221 100%);
  border-color: rgba(243, 179, 54, 0.46); color: #18213a !important;
  box-shadow: 0 18px 36px rgba(243, 179, 54, 0.25), inset 0 1px 0 rgba(255,255,255,0.45);
}
.VgIrpkub[data-offer="landing"] {
  background: linear-gradient(135deg, #5a8cff 0%, #2f6cff 52%, #1e54d8 100%);
}
.VgIrpkub[data-offer="betting"] {
  background: linear-gradient(135deg, #2fd0bf 0%, #23b6a6 50%, #128f83 100%);
  border-color: rgba(35, 182, 166, 0.44);
  box-shadow: 0 18px 36px rgba(35, 182, 166, 0.23), inset 0 1px 0 rgba(255,255,255,0.36);
}
.VgIrpkub--nav {
  min-height: 44px; padding: 0 16px; font-size: 0.88rem;
  box-shadow: 0 12px 24px rgba(47, 108, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.32);
  white-space: nowrap;
}
.VgIrpkub--nav::after { width: 20px; height: 20px; margin-left: 7px; font-size: 0.78rem; }
.topbar__affiliate-actions {
  display: inline-flex; gap: 10px; align-items: center; justify-content: flex-end;
  flex-wrap: wrap; margin-left: auto;
}
.site-nav .VgIrpkub, .main-nav .VgIrpkub, .topbar__affiliate-actions .VgIrpkub,
.site-nav .VgIrpkub::after, .main-nav .VgIrpkub::after { text-decoration: none !important; }
.site-nav .VgIrpkub::before, .main-nav .VgIrpkub::before,
.site-nav .VgIrpkub::after, .main-nav .VgIrpkub::after { position: static; }
.site-nav .VgIrpkub::before, .main-nav .VgIrpkub::before { display: none; }
.site-nav .VgIrpkub::after, .main-nav .VgIrpkub::after { content: "↗"; transform: none; }
.site-nav .VgIrpkub:hover::after, .site-nav .VgIrpkub:focus-visible::after,
.main-nav .VgIrpkub:hover::after, .main-nav .VgIrpkub:focus-visible::after { transform: translate(1px, -1px); }
.site-nav .VgIrpkub, .main-nav .VgIrpkub { padding: 0 14px; }
.site-nav .VgIrpkub:hover, .site-nav .VgIrpkub:focus-visible,
.main-nav .VgIrpkub:hover, .main-nav .VgIrpkub:focus-visible { color: #fff !important; }
.VgIrpkub[data-offer="register"]:hover, .VgIrpkub[data-offer="register"]:focus-visible { color: #18213a !important; }
@media (max-width: 1180px) {
  .topbar__inner, .header-row { gap: 16px; }
  .site-nav, .main-nav { gap: clamp(10px, 1.4vw, 18px); }
  .VgIrpkub--nav { padding: 0 13px; }
}
@media (max-width: 920px) {
  .topbar.is-open .topbar__affiliate-actions, .site-header.is-open .topbar__affiliate-actions, .topbar__affiliate-actions {
    display: grid; grid-template-columns: 1fr 1fr; grid-column: 1 / -1; width: 100%; margin: 12px 0 18px;
  }
  .topbar__affiliate-actions .VgIrpkub { width: 100%; }
  .affiliate-panel { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .topbar__affiliate-actions, .affiliate-panel__actions { grid-template-columns: 1fr; }
  .VgIrpkub { width: 100%; }
}


/* === homepage infographic assets === */
.home-infographic-section { padding-top: 0; padding-bottom: clamp(22px, 4vw, 48px); }
.home-infographic { margin: 0; overflow: hidden; border-radius: 28px; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease; }
.home-infographic:hover, .home-infographic:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-lg); outline: 3px solid rgba(47,108,255,.2); outline-offset: 4px; }
.home-infographic img { width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }
.home-infographic figcaption { padding: 14px 18px 16px; color: var(--text-soft); font-size: .94rem; line-height: 1.55; background: rgba(255,255,255,.94); }
.page-story .toc-card { margin-bottom: 28px; }
.page-story h2, .page-story h3 { scroll-margin-top: 116px; }
.nav-dropdown--countries .nav-dropdown__menu { min-width: 210px; }
@media (max-width: 920px) { .home-infographic { border-radius: 20px; } }


/* === dropdown hub links, referral images and in-content CTA blocks === */
.nav-dropdown__menu .nav-dropdown__hub-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 8px;
  padding: 11px 14px;
  border: 1px solid rgba(47, 108, 255, 0.24);
  border-radius: 13px;
  color: #ffffff;
  font-weight: 850;
  background: linear-gradient(135deg, #5a8cff 0%, #2f6cff 54%, #1e54d8 100%);
  box-shadow: 0 10px 18px rgba(47, 108, 255, 0.18);
}
.nav-dropdown__menu .nav-dropdown__hub-link::before {
  content: "전체 페이지";
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: 999px;
  color: #dce8ff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}
.nav-dropdown__menu .nav-dropdown__hub-link::after {
  content: "→";
  display: inline-flex;
  margin-left: auto;
  color: #ffffff;
  font-weight: 900;
}
.nav-dropdown__menu .nav-dropdown__hub-link:hover,
.nav-dropdown__menu .nav-dropdown__hub-link:focus-visible,
.nav-dropdown__menu .nav-dropdown__hub-link[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, #477cff 0%, #255fea 56%, #1748c5 100%);
  outline: none;
  transform: translateY(-1px);
}
img[data-offer="landing"] {
  cursor: pointer;
}
img[data-offer="landing"]:focus-visible {
  outline: 3px solid rgba(47, 108, 255, 0.42);
  outline-offset: 4px;
}
.cta-inline-block {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 26px;
  align-items: center;
  margin: 34px 0;
  padding: clamp(22px, 3.5vw, 34px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(90, 140, 255, 0.18), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(243, 179, 54, 0.20), transparent 38%),
    linear-gradient(135deg, rgba(250, 252, 255, 0.98), rgba(239, 245, 255, 0.96));
  box-shadow: 0 18px 38px rgba(16, 42, 96, 0.10);
}
.cta-inline-block::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(47, 108, 255, 0.13);
  border-radius: 18px;
  pointer-events: none;
}
.cta-inline-block__copy,
.cta-inline-block__actions { position: relative; z-index: 1; }
.cta-inline-block__copy .kicker { margin-top: 0; }
.cta-inline-block__title {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.cta-inline-block__copy p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}
.cta-inline-block__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (max-width: 920px) {
  .cta-inline-block { grid-template-columns: 1fr; }
  .topbar__affiliate-actions { grid-template-columns: 1fr 1fr 1fr !important; }
}
@media (max-width: 720px) {
  .topbar__affiliate-actions { grid-template-columns: 1fr !important; }
}


/* ===== June 8 polish: desktop header, full-bleed heroes, group/team/stadium cards ===== */
.topbar__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  min-height: 86px;
  padding: 10px 0;
}
.brand { flex: 0 0 auto; }
.site-nav {
  flex: 1 1 580px;
  min-width: 0;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 18px);
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: .92rem;
}
.site-nav a,
.nav-dropdown__toggle { font-size: .92rem; }
.topbar__affiliate-actions { margin-left: auto; }
.topbar__affiliate-actions .VgIrpkub--nav { min-height: 40px; padding: 0 14px; font-size: .82rem; }
.topbar > .container { overflow: visible; }
@media (max-width: 1320px) {
  .brand__copy strong { font-size: 1rem; }
  .site-nav { font-size: .88rem; gap: 10px; }
  .site-nav a, .nav-dropdown__toggle { font-size: .88rem; }
}
@media (max-width: 1160px) {
  .topbar__inner > .button.topbar__cta { display: none; }
}

.nav-dropdown__menu {
  width: min(320px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  gap: 8px;
  padding: 14px;
}
.nav-dropdown--teams .nav-dropdown__menu { width: min(920px, calc(100vw - 32px)); }
.nav-dropdown--cities .nav-dropdown__menu,
.nav-dropdown--stadiums .nav-dropdown__menu { width: min(740px, calc(100vw - 32px)); }
.nav-dropdown__menu a { line-height: 1.35; white-space: normal; }
.nav-dropdown__menu .nav-dropdown__hub-link {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-bottom: 4px;
  padding: 10px 14px;
  font-size: .93rem;
}
.nav-dropdown__menu .nav-dropdown__hub-link::before {
  content: "전체";
  font-size: .66rem;
  padding: 3px 8px;
}
.nav-dropdown__menu .nav-dropdown__hub-link::after { font-size: 1rem; }

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  padding: 0;
  overflow: hidden;
  background: #0f1d3f;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: calc(100svh - 86px);
}
.hero__visual,
.hero__visual--page {
  position: absolute;
  inset: 0;
  padding: 0;
  z-index: 0;
}
.hero__image-card,
.hero__image-card--page {
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #0f1d3f;
}
.hero__image-card::before,
.hero__image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__image-card::before {
  background: linear-gradient(90deg, rgba(9,17,40,.90) 0%, rgba(9,17,40,.78) 36%, rgba(9,17,40,.52) 62%, rgba(9,17,40,.68) 100%);
}
.hero__image-card::after {
  background: linear-gradient(180deg, rgba(8,14,30,.24) 0%, rgba(8,14,30,.26) 46%, rgba(8,14,30,.72) 100%);
}
.hero__image-card img,
.hero__image-card--page .hero__image--page,
.hero__image-card--page > .hero__image--page {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  filter: saturate(1.02) contrast(1.04);
}
.hero__backdrop {
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(76, 120, 255, 0.22), transparent 0 18%),
    radial-gradient(circle at 14% 82%, rgba(35, 182, 166, 0.18), transparent 0 20%),
    linear-gradient(180deg, rgba(9,17,40,0.12), rgba(9,17,40,0.12));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(760px, calc(100% - 360px));
  padding: clamp(54px, 11vh, 120px) 0 clamp(32px, 7vh, 56px);
}
.hero__content h1,
.team-hero .hero__content h1,
.city-hero .hero__content h1,
.stadium-hero .hero__content h1 {
  color: #fff;
  max-width: 12ch;
  text-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.hero__lead,
.hero__lead .inline-anchor { color: rgba(255,255,255,.9); }
.hero__eyebrow,
.pill,
.info-chip {
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
}
.hero .button--secondary {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}
.hero .button--secondary:hover,
.hero .button--secondary:focus-visible { background: rgba(255,255,255,.14); }
.stat-card,
.match-float {
  background: rgba(9,17,40,.52);
  border-color: rgba(255,255,255,.16);
  color: #fff;
  backdrop-filter: blur(14px);
}
.stat-card span,
.match-float__meta,
.match-float__group,
.mini-odds small { color: rgba(255,255,255,.74); }
.match-float {
  position: absolute;
  right: 0;
  bottom: clamp(18px, 4vh, 36px);
  width: min(360px, 33vw);
  z-index: 4;
}
.hero__stats { margin-top: 22px; }
.hero__actions { gap: 12px; }
@media (max-width: 1200px) {
  .hero__content {
    max-width: 100%;
    padding-top: 72px;
    padding-bottom: 24px;
  }
  .match-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(460px, 100%);
    margin-top: 22px;
  }
}
@media (max-width: 920px) {
  .hero,
  .hero__grid { min-height: auto; }
  .hero__content {
    max-width: 100%;
    padding: 76px 0 32px;
  }
  .hero__content h1 { max-width: 100%; }
  .hero__visual,
  .hero__visual--page { inset: 0; }
  .hero__image-card::before { background: linear-gradient(180deg, rgba(9,17,40,.88) 0%, rgba(9,17,40,.62) 38%, rgba(9,17,40,.74) 100%); }
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.section--groups .group-card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(241,246,255,.96));
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.section--groups .group-card:hover,
.section--groups .group-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47,108,255,.26);
}
.section--groups .group-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section--groups .group-card h3::after {
  content: "4 teams";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.section--groups .group-card ul { gap: 12px; }
.section--groups .group-card li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(223,230,243,.86);
  color: var(--text);
  font-weight: 600;
}
.section--groups .group-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5a8cff, #2f6cff);
  box-shadow: 0 0 0 6px rgba(47,108,255,.10);
}
@media (max-width: 1100px) { .group-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 820px) { .group-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .group-grid { grid-template-columns: 1fr; } }

.link-card--team,
.link-card--stadium {
  padding: 18px;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 284px;
}
.link-card__media {
  display: block;
  width: 100%;
  height: 132px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(207,216,234,.78);
  background: linear-gradient(180deg, rgba(245,248,255,.95), rgba(233,240,255,.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
.link-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.link-card__media--flag {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(246,248,252,.98), rgba(235,241,255,.98));
}
.link-card__media--flag img {
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(16,42,96,.14);
  border-radius: 10px;
}
.link-card--team strong,
.link-card--stadium strong { font-size: 1.08rem; }
.link-card--team em,
.link-card--stadium em { line-height: 1.5; }

@media (max-width: 920px) {
  .topbar__inner {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
  }
  .topbar__affiliate-actions { margin-left: 0; }
  .topbar.is-open .topbar__affiliate-actions {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
    margin: 12px 0 18px;
  }
}


/* ===== June 9 fixes: stable header, cleaner dropdowns, stronger hero backgrounds ===== */
.topbar__inner {
  flex-wrap: nowrap;
  min-height: 78px;
}
.topbar__inner > .button.topbar__cta {
  display: none !important;
}
.brand__logo {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}
.brand__copy strong {
  font-size: .98rem;
}
.site-nav {
  gap: clamp(8px, .9vw, 14px);
  font-size: .84rem;
  white-space: nowrap;
}
.site-nav > a,
.site-nav > .nav-dropdown,
.nav-dropdown__toggle {
  flex: 0 0 auto;
  white-space: nowrap;
}
.topbar__affiliate-actions {
  flex: 0 0 auto;
  gap: 8px;
}
.topbar__affiliate-actions .VgIrpkub--nav {
  min-height: 38px;
  padding: 0 12px;
  font-size: .78rem;
}
.site-nav .nav-dropdown:first-of-type .nav-dropdown__menu {
  width: min(700px, calc(100vw - 32px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.site-nav .nav-dropdown:first-of-type .nav-dropdown__menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: min(760px, 100%);
}
.hero__content h1,
.team-hero .hero__content h1,
.city-hero .hero__content h1,
.stadium-hero .hero__content h1 {
  max-width: 12ch;
}
.hero__lead {
  max-width: 62ch;
}
.hero--flag .hero__image-card img {
  object-fit: contain;
  background: linear-gradient(180deg, rgba(8,14,30,.82), rgba(8,14,30,.82));
  padding: clamp(26px, 4vw, 54px);
  filter: none;
}
.hero--flag .hero__image-card::before {
  background: linear-gradient(90deg, rgba(9,17,40,.88) 0%, rgba(9,17,40,.58) 38%, rgba(9,17,40,.38) 100%);
}
.hero--flag .hero__image-card::after {
  background: linear-gradient(180deg, rgba(8,14,30,.18) 0%, rgba(8,14,30,.12) 36%, rgba(8,14,30,.70) 100%);
}
.hero--stadium .hero__image-card img {
  object-position: center center;
}
.section--groups .group-card {
  min-height: 0;
}
.section--groups .group-card h3 {
  font-size: 1.22rem;
}
.section--groups .group-card li {
  font-size: .97rem;
  line-height: 1.35;
}
@media (max-width: 1360px) {
  .brand__copy strong { font-size: .92rem; }
  .site-nav { gap: 8px; font-size: .8rem; }
  .nav-dropdown__toggle, .site-nav a { font-size: .8rem; }
  .topbar__affiliate-actions .VgIrpkub--nav {
    min-height: 36px;
    padding: 0 10px;
    font-size: .74rem;
  }
}
@media (max-width: 1200px) {
  .site-nav .nav-dropdown:first-of-type .nav-dropdown__menu {
    width: min(560px, calc(100vw - 24px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .topbar__inner {
    flex-wrap: wrap;
  }
  .site-nav .nav-dropdown:first-of-type .nav-dropdown__menu {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__content h1,
  .team-hero .hero__content h1,
  .city-hero .hero__content h1,
  .stadium-hero .hero__content h1 {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .site-nav .nav-dropdown:first-of-type .nav-dropdown__menu {
    grid-template-columns: 1fr;
  }
}


/* ===== June 9 final hero cleanup: no aside cards, true viewport-width background ===== */
.match-float { display: none !important; }
.hero__visual,
.hero__visual--page {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
}
.hero__image-card,
.hero__image-card--page {
  width: 100%;
  max-width: none;
}
.hero__image-card img,
.hero__image-card--page .hero__image--page,
.hero__image-card--page > .hero__image--page {
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hero__content {
  max-width: min(820px, 78vw);
}
@media (max-width: 920px) {
  .hero__content { max-width: 100%; }
}

/* Keep team-flag hero images full-bleed as well: no side gutters. */
.hero--flag .hero__image-card img,
.hero--flag .hero__image-card--page .hero__image--page {
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.98) contrast(1.03);
}


/* ===== page guide infographics: hero background + one body placement ===== */
.page-guide-image {
  margin: clamp(24px, 4vw, 42px) 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(207, 216, 234, .82);
  background: #0f1d3f;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.page-guide-image:hover,
.page-guide-image:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 108, 255, .34);
  outline: 3px solid rgba(47, 108, 255, .16);
  outline-offset: 4px;
}
.page-guide-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}
.page-guide-image figcaption {
  padding: 12px 16px 14px;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.55;
  background: rgba(255, 255, 255, .97);
}
.page-guide-image-section { padding-top: 0; padding-bottom: 0; }
@media (max-width: 640px) {
  .page-guide-image { border-radius: 18px; }
  .page-guide-image figcaption { padding: 10px 12px 12px; font-size: .86rem; }
}
