:root {
  --page-bg: #f2f2f2;
  --surface: #f5f5f5;
  --card: #ffffff;
  --ink: #111111;
  --muted: #6f7788;
  --line: #dfe4ee;
  --blue: #314ffe;
  --blue-deep: #15548b;
  --nav-black: #050505;
  --footer: #020f2a;
  --yellow: #ffd84c;
  --shadow: 0 18px 40px rgba(8, 16, 38, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

@font-face {
  font-family: "FIFASans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/FIFASans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "FIFASans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/FIFASans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "FIFASans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/FIFASans-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "FIFASans";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/FIFASans-Italic.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "FIFASans", "Poppins", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(49, 79, 254, 0.08), transparent 28%),
    linear-gradient(180deg, #fafafa 0%, #ededed 100%);
  color: var(--ink);
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  padding: 0;
}

.page-frame {
  width: 100%;
  margin: 0;
  background: transparent;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
}

.meta-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.9rem;
  padding: 1.25rem 2.75rem;
  background: var(--nav-black);
  box-shadow: 0 0.55rem 1.4rem rgba(0, 0, 0, 0.28);
  color: #fff;
}

.meta-left,
.meta-center,
.meta-right,
.meta-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meta-center {
  justify-content: center;
}

.meta-right {
  margin-left: 0;
  justify-content: flex-end;
  justify-self: end;
}

.site-header .meta-left {
  grid-column: 2 / span 5;
  min-width: 0;
}

.site-header .meta-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  width: max-content;
  z-index: 1;
}

.site-header .meta-right {
  grid-column: 9 / span 3;
  flex: 0 0 auto;
  min-width: 0;
}

.icon-button {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.icon-button span {
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.fifa-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: block;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark-wrap {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.site-header .fifa-logo {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.site-header .brand-mark {
  height: 2.5rem;
}

.site-header .brand-copy {
  max-width: 13rem;
}

.site-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.3rem 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-menu-link:hover,
.site-menu-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-menu-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mini-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-nav a {
  opacity: 0.92;
}

.tool-chip,
.language-trigger,
.circle-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.tool-chip,
.language-trigger {
  font-size: 0.95rem;
}

.caret {
  font-size: 1rem;
  line-height: 1;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-trigger {
  padding: 0;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0.15rem;
  min-width: 13.5rem;
  max-height: min(70vh, 24rem);
  padding: 0.55rem;
  overflow-y: auto;
  background: rgba(4, 13, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.7rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}

.language-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  line-height: 1.25;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.language-menu a[aria-current="page"] {
  color: #071126;
  background: #fff;
  font-weight: 700;
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.78rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mobile-nav[open] .mobile-menu-trigger,
.mobile-menu-trigger:hover,
.mobile-menu-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-icon {
  display: grid;
  gap: 0.22rem;
}

.mobile-menu-icon span {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  z-index: 25;
  display: grid;
  gap: 0.7rem;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.75rem;
  background: rgba(4, 13, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}

.mobile-menu-links {
  display: grid;
  gap: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links .site-menu-link {
  justify-content: flex-start;
  width: 100%;
  min-height: 2.45rem;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.62rem;
}

.mobile-menu-languages {
  display: grid;
  gap: 0.15rem;
  max-height: min(56vh, 20rem);
  padding-right: 0.15rem;
  overflow-y: auto;
}

.mobile-menu-languages a {
  display: block;
  padding: 0.55rem 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  line-height: 1.25;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-languages a:hover,
.mobile-menu-languages a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mobile-menu-languages a[aria-current="page"] {
  color: #071126;
  background: #fff;
  font-weight: 700;
}

.circle-tool {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.35rem;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0 2rem;
  background: var(--nav-black);
  color: #fff;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar,
.carousel-track::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  padding: 1.7rem 0;
  font-size: 0.84rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.main-content {
  background: var(--surface);
}

.hero-banner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  column-gap: 1rem;
  row-gap: 1.4rem;
  padding: 1.8rem 2.75rem;
  background: linear-gradient(90deg, #3f53ef 0%, #314ffe 100%);
  color: #fff;
}

.hero-copy {
  grid-column: 2 / span 4;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 1rem;
}

.hero-kicker {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  font-weight: 600;
  line-height: 1.08;
}

.hero-date {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  opacity: 0.98;
}

.countdown-panel {
  grid-column: 7 / span 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 0.95rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.countdown-box {
  text-align: center;
  min-width: 3.1rem;
}

.countdown-box strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.countdown-box span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.68rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  background: #050505;
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.content-section {
  padding: 3rem 2.75rem;
}

#matches {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0;
}

#matches > .section-heading,
#matches > .match-desktop-list,
#matches > .match-mobile-shell {
  grid-column: 2 / span 10;
}

#hosts,
#standings {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0;
}

#hosts > .section-heading,
#hosts > .carousel-block,
#standings > .section-heading,
#standings > .standings-grid,
#standings > .standings-legend {
  grid-column: 2 / span 10;
}

.groups-page-main {
  min-height: 100vh;
}

.groups-overview-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0;
}

.groups-overview-section > .section-heading,
.groups-overview-section > .groups-grid {
  grid-column: 2 / span 10;
}

.qualification-guide-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0;
  padding-top: 0;
}

.qualification-guide-section > .section-heading,
.qualification-guide-section > .qualification-guide-grid {
  grid-column: 2 / span 10;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 1.8rem;
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.match-desktop-list {
  display: grid;
  gap: 1.6rem;
}

.match-mobile-shell {
  display: none;
}

.match-mobile-shell .carousel-controls {
  display: none;
}

.match-stage-block {
  display: grid;
  gap: 0.85rem;
}

.match-stage-heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.match-date-group {
  display: grid;
  gap: 0.55rem;
}

.match-date-heading {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
}

.match-day-list {
  display: grid;
  gap: 1rem;
}

.match-mobile-date-group {
  display: grid;
  gap: 0.55rem;
}

.match-mobile-date-heading {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
}

.match-row-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.48rem;
  box-shadow: 0 1px 0 rgba(11, 19, 41, 0.02);
  overflow: hidden;
}

.match-row-main {
  display: grid;
  grid-template-columns: minmax(7rem, 8rem) minmax(0, 1fr) auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.2rem;
}

.match-row-meta,
.match-row-venue {
  margin: 0;
  color: #66718b;
}

.match-row-meta {
  font-size: 0.78rem;
  line-height: 1.35;
}

.match-row-team {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.15;
}

.match-row-team--home {
  justify-content: flex-end;
  text-align: right;
}

.match-row-team--away {
  justify-content: flex-start;
  text-align: left;
}

.match-row-team-name {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.team-symbol {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  font-size: 1.15rem;
}

.team-symbol--code {
  width: auto;
  min-width: 2rem;
  padding: 0 0.38rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #1f2740;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.match-row-kickoff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0.35rem 0.75rem;
  background: #f4f7ff;
  border-radius: 999px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
}

.match-row-vote {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.match-row-footer {
  display: none;
}

.match-row-broadcast {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.match-row-venue {
  font-size: 0.9rem;
  text-align: right;
  line-height: 1.35;
}

.carousel-block {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.host-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.match-card,
.host-card,
.group-table {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 19, 41, 0.02);
}

.match-card-link,
.match-row-link,
.group-overview-match-link {
  display: block;
  color: inherit;
}

.match-card {
  min-width: 18rem;
  border-radius: 0.48rem;
  overflow: hidden;
}

.match-card-link:hover .match-card,
.match-card-link:focus-visible .match-card,
.match-row-link:hover .match-row-card,
.match-row-link:focus-visible .match-row-card,
.group-overview-match-link:hover .group-overview-match,
.group-overview-match-link:focus-visible .group-overview-match {
  border-color: rgba(49, 79, 254, 0.32);
  box-shadow: 0 12px 24px rgba(8, 16, 38, 0.06);
}

.match-head {
  padding: 0.8rem 0.95rem 0.45rem;
  border-bottom: 0;
}

.match-tag {
  margin: 0 0 0.35rem;
  font-size: 0.64rem;
  color: #30384f;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.match-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  color: #5d6780;
  font-size: 0.72rem;
  line-height: 1.35;
}

.match-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  padding: 0 0.95rem 0.9rem;
}

.teams {
  display: grid;
  gap: 0.55rem;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

.team-row span:last-child {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.flag-emoji {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  font-size: 1.1rem;
}

.match-time {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.42rem 0.72rem;
  background: #f4f7ff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.match-time--vote {
  min-width: 5.15rem;
  padding-left: 0.95rem;
  padding-right: 0.95rem;
  color: #fff;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.match-time--vote:hover,
.match-time--vote:focus-visible {
  background: #0f0f12;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0.35rem 0.8rem rgba(5, 5, 5, 0.18);
  transform: translateY(-1px);
}

.broadcast-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.15rem 1rem;
  border-top: 1px solid var(--line);
}

.play-badge,
.network-pill,
.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.play-badge {
  width: 1.35rem;
  height: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.72rem;
}

.network-pill {
  min-height: 1.6rem;
  padding: 0.2rem 0.65rem;
  background: #f5f7fc;
  color: #212a3f;
  font-size: 0.72rem;
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.carousel-arrow {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 1.5rem;
  cursor: pointer;
}

.carousel-arrow.is-muted {
  opacity: 0.45;
}

.hosts-section {
  padding-top: 0.5rem;
}

.host-card {
  overflow: hidden;
  border-radius: 0.6rem;
}

.host-top {
  min-height: 10.4rem;
  padding: 0.95rem 0.95rem 1.1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.host-top.is-dark-text {
  color: #000;
}

.host-country-label {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.host-name {
  margin: 0;
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.host-bottom {
  display: grid;
  gap: 0.45rem;
  padding: 0.8rem 0.95rem 0.95rem;
}

.host-stat {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.76rem;
  line-height: 1.35;
}

.host-stat dt {
  color: #97a1b7;
}

.host-stat dd {
  margin: 0;
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.group-overview-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  box-shadow: 0 1px 0 rgba(11, 19, 41, 0.02);
}

.group-overview-top {
  min-height: 13rem;
  padding: 0.95rem 0.95rem 1.05rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.group-overview-top.is-dark-text {
  color: #111;
}

.group-overview-stage {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
}

.group-overview-name {
  margin: 0;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.group-overview-teams {
  display: grid;
  gap: 0.48rem;
  margin-top: auto;
}

.group-overview-team {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
}

.group-overview-team span:last-child {
  min-width: 0;
}

.group-overview-bottom {
  display: grid;
  gap: 0;
  padding: 0.2rem 0.95rem;
}

.group-overview-match {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(223, 228, 238, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.group-overview-match:first-child {
  border-top: 0;
}

.group-overview-match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
  color: #66718b;
  font-size: 0.72rem;
  line-height: 1.3;
}

.group-overview-match-pairing {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.28;
}

.group-overview-match-separator {
  color: #9aa3b8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-overview-match-venue {
  margin: 0.4rem 0 0;
  color: #4f5971;
  font-size: 0.74rem;
  line-height: 1.35;
}

.qualification-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.qualification-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.25rem 1.3rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 1px 0 rgba(11, 19, 41, 0.02);
}

.qualification-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.qualification-card p {
  margin: 0;
  color: #4f5971;
  font-size: 0.92rem;
  line-height: 1.58;
}

.match-page-poll {
  display: grid;
  gap: 1rem;
  margin: 0 auto 2rem;
}

.match-page-vote-heading {
  margin: 0;
  text-align: center;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.match-page-vote-note {
  display: grid;
  gap: 0.14rem;
  margin: -0.2rem auto 0.35rem;
  color: #7a8293;
  font-size: clamp(0.82rem, 0.95vw, 0.96rem);
  line-height: 1.38;
  letter-spacing: -0.01em;
  text-align: center;
  text-wrap: balance;
}

.match-page-vote-note span {
  display: block;
}

.match-page-vote-option {
  --vote-share: 0%;
  --vote-bar-height: clamp(2.25rem, 4.35vw, 3.4rem);
  position: relative;
  width: 100%;
  min-height: clamp(7.85rem, 9.7vw, 9rem);
  padding: 0.95rem 1rem calc(0.95rem + var(--vote-bar-height));
  border: 0.5px solid #e7e2d7;
  border-radius: 0.5rem;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.match-page-vote-option:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: var(--vote-bar-height);
  background: #eef1f6;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.match-page-vote-option:after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: var(--vote-share);
  height: var(--vote-bar-height);
  background: #d8deea;
  opacity: 0;
  transition: width 0.35s ease, opacity 0.25s ease;
}

.match-page-poll.is-results .match-page-vote-option:before {
  opacity: 1;
}

.match-page-poll.is-results .match-page-vote-option:after {
  opacity: 1;
}

.match-page-vote-option:hover,
.match-page-vote-option:focus-visible {
  transform: translateY(-2px);
}

.match-page-vote-option.is-selected {
  border-color: #050505;
  box-shadow: 0 0 0 1px rgba(5, 5, 5, 0.08);
}

.match-page-poll.is-results .match-page-vote-option {
  cursor: default;
  transform: none;
}

.match-page-poll.is-results .match-page-vote-option.is-leading {
  border-color: #7f889c;
}

.match-page-poll.is-results .match-page-vote-option.is-voted {
  box-shadow: 0 0 0 1px rgba(5, 5, 5, 0.08);
}

.match-page-poll.is-results .match-page-card-vote {
  display: none;
}

.match-page-vote-option > * {
  position: relative;
  z-index: 1;
}

.match-page-vote-option.match-page-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.7rem, 1.15vw, 1rem);
  text-align: center;
}

.match-page-vote-option.match-page-team--home,
.match-page-vote-option.match-page-team--away {
  justify-content: space-between;
}

.match-page-team-copy {
  display: grid;
  width: min(100%, 10.25rem);
  align-content: center;
  gap: 0.15rem;
  min-height: 0;
  min-width: 0;
  flex: 1 1 auto;
  position: static;
}

.match-page-team--home .match-page-team-copy {
  justify-items: start;
  text-align: left;
}

.match-page-team--away .match-page-team-copy {
  justify-items: end;
  text-align: right;
}

.match-page-team-percent {
  color: #4a5367;
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--vote-bar-height);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.match-page-team-percent[hidden] {
  display: none !important;
}

.match-page-vote-option .match-page-flag-media {
  flex: 0 0 auto;
}

.match-page-card-vote {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--vote-bar-height);
  padding: 0.32rem 0.75rem;
  border: 0;
  border-radius: 0 0 0.5rem 0.5rem;
  background: #050505;
  color: #ffffff;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.match-page-card-vote:hover,
.match-page-card-vote:focus-visible {
  transform: translateY(-1px);
  background: #111111;
}

.match-page-poll-actions {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.match-page-poll-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.25rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.match-page-poll-submit[hidden],
.match-page-poll-total[hidden] {
  display: none !important;
}

.match-page-poll-submit:hover,
.match-page-poll-submit:focus-visible {
  background: #0d0d0d;
}

.match-page-poll-total {
  margin: 0;
  color: #6b7384;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.match-page-body {
  background: #ffffff;
}

.match-page-layout {
  min-height: 100vh;
  background: #ffffff;
  color: #111111;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0;
  padding: 2.5rem 2.75rem 2.75rem;
}

.match-page-inner {
  grid-column: 2 / span 10;
  width: 100%;
  margin: 0;
  padding: 0;
}

.match-page-logo-link {
  display: block;
  width: fit-content;
  margin: 0 auto 2rem;
}

.match-page-logo {
  display: block;
  width: clamp(3.3rem, 3.5vw, 4.2rem);
  height: auto;
}

.match-page-topline {
  margin: 0 0 2.7rem;
  color: #bebebe;
  font-size: clamp(1.1rem, 1.55vw, 1.95rem);
  line-height: 1.2;
}

.match-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.6rem, 3.4vw, 4.8rem);
  padding-bottom: 2.45rem;
  border-bottom: 1px solid #e7e2d7;
}

.match-page-team {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 1.7rem);
  min-width: 0;
}

.match-page-team--home {
  justify-content: flex-end;
  text-align: right;
}

.match-page-team--away {
  justify-content: flex-start;
  text-align: left;
}

.match-page-team-name {
  margin: 0;
  max-width: 100%;
  display: grid;
  gap: 0.04rem;
  font-size: clamp(1.12rem, 1.55vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-align: inherit;
  text-transform: uppercase;
  text-wrap: pretty;
  overflow-wrap: normal;
  hyphens: none;
}

.match-page-team-line {
  display: block;
}

.match-page-flag-media {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
}

.match-page-flag-image {
  display: block;
  width: clamp(3.05rem, 4.55vw, 4.85rem);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.12rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.match-page-flag-fallback {
  display: inline-grid;
  place-items: center;
  width: clamp(3.05rem, 4.55vw, 4.85rem);
  aspect-ratio: 4 / 3;
  background: #f3f4f7;
  border: 1px solid #d7dce7;
  border-radius: 0.12rem;
  font-size: clamp(1.45rem, 2.45vw, 2.1rem);
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.match-page-center {
  display: grid;
  justify-items: center;
  align-self: center;
  gap: 0.7rem;
  text-align: center;
}

.match-page-center-meta {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  max-width: min(18rem, 100%);
}

.match-page-time {
  margin: 0;
  font-size: clamp(2.8rem, 4.35vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.match-page-subtime {
  margin: 0;
  color: #bababa;
  font-size: clamp(0.92rem, 1.15vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.match-page-center-venue {
  margin: 0;
  color: #8f97a8;
  font-size: clamp(0.82rem, 0.98vw, 1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.28;
  text-wrap: balance;
}

.match-page-center-divider {
  display: inline-block;
  margin: 0 0.4rem;
  color: #b9bfca;
}

.match-page-footer {
  display: grid;
  justify-items: center;
  gap: 0;
  padding-top: 0.4rem;
}

.match-page-competition {
  margin: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.match-page-share {
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  width: min(100%, 48rem);
  margin-top: -0.34rem;
}

.match-page-share[hidden],
.match-page-competition[hidden] {
  display: none !important;
}

.match-page-share-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.match-page-share-copy {
  margin: 0;
  max-width: 32rem;
  color: #6d7586;
  font-size: clamp(0.8rem, 0.88vw, 0.92rem);
  line-height: 1.36;
  letter-spacing: -0.01em;
  text-align: center;
  text-wrap: balance;
}

.match-page-share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  width: 100%;
  margin-top: 0.15rem;
}

.match-page-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.18rem;
  padding: 0.46rem 0.82rem;
  border: 1px solid #dde2eb;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  color: #111111;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(10, 20, 44, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.match-page-share-button:hover,
.match-page-share-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 20, 44, 0.08);
}

.match-page-share-button--reddit:hover,
.match-page-share-button--reddit:focus-visible {
  border-color: rgba(255, 69, 0, 0.32);
  color: #ff4500;
}

.match-page-share-button--x:hover,
.match-page-share-button--x:focus-visible {
  border-color: rgba(17, 17, 17, 0.22);
  color: #050505;
}

.match-page-share-button--threads:hover,
.match-page-share-button--threads:focus-visible {
  border-color: rgba(17, 17, 17, 0.22);
  color: #050505;
}

.match-page-share-button--whatsapp:hover,
.match-page-share-button--whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.match-page-share-button--telegram:hover,
.match-page-share-button--telegram:focus-visible {
  border-color: rgba(34, 158, 217, 0.28);
  color: #229ed9;
}

.match-page-share-button--facebook:hover,
.match-page-share-button--facebook:focus-visible {
  border-color: rgba(24, 119, 242, 0.28);
  color: #1877f2;
}

.match-page-share-button--linkedin:hover,
.match-page-share-button--linkedin:focus-visible {
  border-color: rgba(10, 102, 194, 0.28);
  color: #0a66c2;
}

.standings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.group-table {
  overflow: hidden;
  border-radius: 0.6rem;
}

.group-table table {
  width: 100%;
  border-collapse: collapse;
}

.group-table thead th {
  padding: 0.75rem 0.55rem;
  border-bottom: 1px solid var(--line);
  color: #66718b;
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
}

.group-table thead th:first-child {
  width: 46%;
  color: #111;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
}

.group-table tbody td {
  padding: 0.72rem 0.55rem;
  font-size: 0.74rem;
  text-align: center;
  border-bottom: 1px solid rgba(223, 228, 238, 0.65);
}

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

.group-table tbody td:first-child {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  font-size: 0.82rem;
}

.group-team-name {
  display: block;
  min-width: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.rank-line {
  display: inline-block;
  width: 0.72rem;
  height: 2px;
  background: var(--line);
}

.standings-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1rem;
  color: #2d3444;
  font-size: 0.74rem;
}

.standings-legend i {
  display: inline-block;
  width: 0.38rem;
  height: 0.8rem;
  margin-right: 0.4rem;
  background: #1ea34c;
  vertical-align: middle;
}

#faq {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0;
  padding-top: 2.2rem;
}

#faq > .section-heading,
#faq > .faq-grid {
  grid-column: 2 / span 10;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  padding: 1.25rem 1.3rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 1px 0 rgba(11, 19, 41, 0.02);
}

.faq-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.faq-card p {
  margin: 0;
  color: #4f5971;
  font-size: 0.92rem;
  line-height: 1.58;
}

.site-footer {
  padding: 1.6rem 2.75rem 2.15rem;
  background: var(--footer);
  color: #fff;
}

.footer-simple {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
}

.footer-simple > .footer-logo,
.footer-simple > .footer-copy,
.footer-simple > .footer-links--legal,
.footer-simple > .footer-language-block {
  grid-column: 2 / span 10;
}

.site-footer .footer-logo {
  align-items: flex-end;
  gap: 1rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.site-footer .brand-mark {
  height: 3.9rem;
}

.footer-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 56rem;
}

.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 1rem;
}

.footer-divider {
  height: 1px;
  margin: 1.1rem 0 1.6rem;
  background: rgba(255, 255, 255, 0.28);
}

.footer-brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
}

.footer-brand-card {
  display: grid;
  place-items: center;
  min-height: 5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-chip-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.footer-chip {
  min-height: 2.8rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
}

.footer-links--legal {
  margin-bottom: 0;
}

.footer-links--legal a,
.footer-links--tournament a {
  color: rgba(255, 255, 255, 0.94);
}

.footer-language-block {
  margin-top: 0.15rem;
}

.footer-language-block .footer-divider {
  margin: 0 0 1rem;
}

.footer-links--languages {
  gap: 0.65rem 1rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-links--languages a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-links--languages a:hover,
.footer-links--languages a:focus-visible,
.footer-links--languages a[aria-current="page"] {
  color: #fff;
}

@media (max-width: 110rem) {
  .page-frame {
    width: 100%;
  }

  .footer-brand-grid,
  .footer-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 78rem) {
  .meta-bar,
  .main-nav,
  .content-section,
  .site-footer,
  .hero-banner,
  .match-page-layout {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .meta-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .meta-center {
    position: static;
    left: auto;
    transform: none;
    width: auto;
    order: 2;
  }

  .countdown-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .hero-copy,
  .countdown-panel {
    grid-column: 1 / -1;
  }

  .countdown-panel {
    justify-content: flex-start;
  }

  .meta-right {
    width: auto;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
  }

  .mini-nav,
  .primary-nav {
    width: 100%;
  }

  .match-row-main {
    grid-template-columns: minmax(6rem, 6.5rem) minmax(0, 1fr) auto minmax(0, 1fr) 1rem;
    gap: 0.65rem;
    padding: 0.8rem 0.95rem;
  }

  .match-row-team {
    font-size: 0.8rem;
  }

  .match-row-kickoff {
    font-size: 0.64rem;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .carousel-track,
  .standings-grid,
  .groups-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  #matches {
    column-gap: 0.75rem;
  }

  #hosts,
  #standings {
    column-gap: 0.75rem;
  }

  #faq {
    column-gap: 0.75rem;
  }

  .groups-overview-section {
    column-gap: 0.75rem;
  }

  .qualification-guide-section {
    column-gap: 0.75rem;
  }

  .footer-simple {
    column-gap: 0.75rem;
  }

  .faq-grid,
  .qualification-guide-grid {
    grid-template-columns: 1fr;
  }

  .host-top {
    min-height: 9.5rem;
  }

  .host-name {
    font-size: 1.55rem;
  }

  .group-overview-top {
    min-height: 12.25rem;
  }

  .match-page-layout {
    column-gap: 0.75rem;
  }
}

@media (max-width: 62rem) {
  #matches {
    display: block;
  }

  #hosts,
  #standings {
    display: block;
  }

  #faq {
    display: block;
    padding-top: 1.8rem;
  }

  .groups-overview-section {
    display: block;
  }

  .match-page-layout {
    display: block;
  }

  .match-desktop-list {
    display: none;
  }

  .match-mobile-shell {
    display: block;
  }

  .match-mobile-shell .carousel-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .match-mobile-shell .match-card {
    width: 100%;
  }

  .match-mobile-shell .match-stage-block {
    gap: 0.8rem;
  }

  .match-mobile-shell .match-stage-heading {
    font-size: 0.98rem;
  }

  .match-mobile-shell .match-day-list,
  .match-mobile-shell .match-mobile-list {
    gap: 0.7rem;
  }

  .match-mobile-shell .match-card {
    min-width: 0;
  }

  .match-mobile-shell .match-tag {
    display: none;
  }

  .match-mobile-shell .match-meta {
    font-size: 0.7rem;
  }

  .match-mobile-shell .match-body {
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
    padding-top: 0.1rem;
  }

  .match-mobile-shell .teams {
    gap: 0.45rem;
  }

  .match-mobile-shell .team-row {
    font-size: 0.88rem;
  }

  .hero-banner {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }

  .hero-kicker {
    font-size: 1.45rem;
  }

  .site-header .fifa-logo {
    font-size: 1rem;
  }

  .site-header .brand-mark {
    height: 2.1rem;
  }

  .site-header .brand-copy {
    max-width: 10rem;
  }

  .site-header .meta-left {
    grid-column: 1 / span 9;
  }

  .site-header .meta-right {
    grid-column: 11 / span 2;
  }

  .site-header .meta-center,
  .site-header .language-switcher {
    display: none;
  }

  .site-header .mobile-nav {
    display: block;
  }

  .site-header .tool-chip,
  .site-header .language-trigger {
    font-size: 0.88rem;
  }

  .site-menu-link {
    min-height: 2rem;
    padding: 0.28rem 0.7rem;
    font-size: 0.84rem;
  }

  .language-menu {
    right: 0;
    min-width: 12rem;
    max-width: min(86vw, 16rem);
  }

  .mobile-menu-panel {
    width: min(19rem, calc(100vw - 2rem));
  }

  .hero-date {
    font-size: 1.5rem;
  }

  .countdown-grid {
    gap: 0.4rem;
  }

  .countdown-box {
    min-width: 2.85rem;
  }

  .countdown-box strong {
    font-size: 1.18rem;
  }

  .countdown-box span {
    margin-top: 0.2rem;
    font-size: 0.62rem;
  }

  .cta-button {
    min-width: 7.4rem;
    min-height: 2.5rem;
    padding: 0.65rem 0.95rem;
    font-size: 0.84rem;
  }

  .faq-grid {
    gap: 0.85rem;
  }

  .faq-card {
    padding: 1rem 1rem 1.1rem;
  }

  .faq-card h3 {
    font-size: 0.98rem;
  }

  .faq-card p {
    font-size: 0.86rem;
  }

  .host-top {
    min-height: 8.75rem;
    padding: 0.85rem 0.85rem 1rem;
  }

  .host-country-label {
    font-size: 0.68rem;
  }

  .host-name {
    font-size: 1.45rem;
  }

  .host-bottom {
    padding: 0.75rem 0.85rem 0.9rem;
  }

  .host-stat {
    font-size: 0.72rem;
  }

  .match-page-inner {
    width: 100%;
    padding: 1.5rem 0 2rem;
  }

  .match-page-logo-link {
    margin-bottom: 1.5rem;
  }

  .match-page-poll {
    margin-bottom: 1.5rem;
  }

  .match-page-vote-heading {
    font-size: 1.35rem;
  }

  .match-page-vote-note {
    gap: 0.1rem;
    margin-top: -0.1rem;
    margin-bottom: 0.25rem;
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .match-page-vote-option {
    --vote-bar-height: 1.55rem;
    min-height: 7.1rem;
    padding: 0.75rem 0.8rem calc(0.75rem + var(--vote-bar-height));
    border-radius: 0.42rem;
  }

  .match-page-team-copy {
    width: min(100%, 7.9rem);
    gap: 0.12rem;
  }

  .match-page-team-percent,
  .match-page-poll-total {
    font-size: 0.92rem;
  }

  .match-page-card-vote {
    font-size: 0.7rem;
    border-radius: 0 0 0.42rem 0.42rem;
  }

  .match-page-team-name {
    font-size: 1.1rem;
    line-height: 0.9;
  }

  .match-page-flag-image,
  .match-page-flag-fallback {
    width: 3.35rem;
  }

  .match-page-topline {
    margin-bottom: 1.7rem;
    text-align: center;
  }

  .match-page-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.7rem;
  }

  .match-page-team,
  .match-page-team--home,
  .match-page-team--away {
    justify-content: initial;
    text-align: center;
  }

  .match-page-center {
    order: -1;
    gap: 0.45rem;
  }

  .match-page-center-meta {
    gap: 0.2rem;
    max-width: 16rem;
  }

  .match-page-subtime {
    font-size: 0.86rem;
  }

  .match-page-center-venue {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .match-page-footer {
    gap: 0;
    padding-top: 0.48rem;
    text-align: center;
  }

  .match-page-share {
    gap: 0.4rem;
    width: 100%;
    margin-top: -0.22rem;
  }

  .match-page-share-title {
    font-size: 1.35rem;
  }

  .match-page-share-copy {
    max-width: 18rem;
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .match-page-share-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .match-page-share-button {
    min-height: 2.25rem;
    padding: 0.56rem 0.72rem;
    font-size: 0.76rem;
  }

  .groups-grid,
  .standings-grid,
  .qualification-guide-grid,
  .footer-brand-grid,
  .footer-chip-grid {
    grid-template-columns: 1fr;
  }

  .group-overview-top {
    min-height: auto;
    padding: 0.85rem 0.85rem 0.95rem;
    gap: 0.7rem;
  }

  .group-overview-stage {
    font-size: 0.68rem;
  }

  .group-overview-name {
    font-size: 1.48rem;
  }

  .group-overview-team {
    font-size: 0.8rem;
  }

  .group-overview-bottom {
    padding: 0.1rem 0.85rem;
  }

  .group-overview-match {
    padding: 0.72rem 0;
  }

  .group-overview-match-pairing {
    font-size: 0.84rem;
  }

  .group-overview-match-venue {
    font-size: 0.72rem;
  }

  .footer-simple {
    display: block;
  }

  .footer-copy {
    margin-top: 0.9rem;
  }

  .site-footer .footer-logo {
    align-items: center;
    gap: 0.85rem;
  }

  .site-footer .brand-mark {
    height: 3.45rem;
  }

  .footer-links--legal {
    margin-top: 1rem;
  }

  .page-shell {
    padding: 0;
  }

  .page-frame {
    border: 0;
  }

  .meta-bar,
  .main-nav,
  .content-section,
  .site-footer,
  .hero-banner,
  .match-page-layout {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 0.25rem;
  }

  .host-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .match-card,
  .host-card {
    width: min(86vw, 23rem);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .host-track .host-card {
    width: 100%;
    flex: initial;
    scroll-snap-align: unset;
  }

  .match-mobile-shell .carousel-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .match-mobile-shell .match-card {
    width: 100%;
  }

  .match-mobile-shell .match-time {
    justify-self: flex-end;
  }

  .match-mobile-shell .match-time--vote {
    min-width: 4.7rem;
    min-height: 2rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    font-size: 0.74rem;
  }

  .match-mobile-shell .broadcast-row {
    display: none;
  }

  .group-table thead th:first-child {
    font-size: 1.05rem;
  }

  .group-table tbody td:first-child {
    font-size: 0.78rem;
  }

  .standings-legend {
    font-size: 0.7rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-links--languages {
    flex-direction: row;
    gap: 0.55rem 0.9rem;
  }

  .meta-right {
    margin-left: auto;
  }

  .meta-center {
    display: none;
  }

  .language-menu {
    right: 0;
    left: auto;
    min-width: min(86vw, 15rem);
    max-height: 18rem;
  }
}
