body.mf-world-cup-page .mf-wc-experience-shell {
  padding-block: clamp(1rem, 2vw, 1.35rem) !important;
  border-block: 1px solid rgba(245, 200, 66, .16);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 85, 164, .24), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(0, 133, 63, .24), transparent 35%),
    linear-gradient(135deg, rgba(3, 12, 10, .96), rgba(2, 24, 19, .92));
}

body.mf-world-cup-page .mf-wc-exp-head,
body.mf-world-cup-page .mf-wc-exp-board,
body.mf-world-cup-page .mf-wc-exp-lower,
body.mf-world-cup-page .mf-wc-exp-section-head {
  display: grid;
  gap: .72rem;
}

body.mf-world-cup-page .mf-wc-exp-head {
  grid-template-columns: minmax(0, 1fr) minmax(10rem, .18fr);
  align-items: end;
}

body.mf-world-cup-page .mf-wc-exp-head h2,
body.mf-world-cup-page .mf-wc-exp-section-head h3,
body.mf-world-cup-page .mf-wc-exp-error h2,
body.mf-world-cup-page .mf-wc-experience-loading h2 {
  margin: .15rem 0;
  max-width: 18ch;
  color: #f7fbfa;
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
  line-height: .95;
}

body.mf-world-cup-page .mf-wc-exp-head p,
body.mf-world-cup-page .mf-wc-exp-section-head p,
body.mf-world-cup-page .mf-wc-exp-source-note p,
body.mf-world-cup-page .mf-wc-exp-error p,
body.mf-world-cup-page .mf-wc-experience-loading p {
  margin: 0;
  max-width: 72ch;
  color: rgba(237, 245, 242, .78);
  font-size: .88rem;
  line-height: 1.45;
}

body.mf-world-cup-page .mf-wc-exp-status {
  display: grid;
  min-height: 6.2rem;
  padding: .78rem;
  border: 1px solid rgba(245, 200, 66, .28);
  border-radius: .9rem;
  background: rgba(1, 10, 8, .78);
}

body.mf-world-cup-page .mf-wc-exp-status strong {
  color: #f5c842;
  font-size: 2.3rem;
  line-height: .9;
}

body.mf-world-cup-page .mf-wc-exp-status span,
body.mf-world-cup-page .mf-wc-exp-status small {
  color: rgba(247, 251, 250, .8);
  font-size: .74rem;
  text-transform: uppercase;
}

body.mf-world-cup-page .mf-wc-exp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-block: .8rem;
}

body.mf-world-cup-page .mf-wc-exp-filters button {
  min-height: 2rem;
  padding: .38rem .72rem;
  border: 1px solid rgba(245, 200, 66, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #f7fbfa;
  font: 850 .68rem/1 var(--f-mono, "JetBrains Mono", monospace);
  letter-spacing: .04em;
  cursor: pointer;
}

body.mf-world-cup-page .mf-wc-exp-filters button.is-active,
body.mf-world-cup-page .mf-wc-exp-filters button:hover,
body.mf-world-cup-page .mf-wc-exp-filters button:focus-visible {
  border-color: rgba(245, 200, 66, .78);
  background: #f5c842;
  color: #06110c;
}

body.mf-world-cup-page .mf-wc-exp-board {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, .34fr);
  align-items: start;
}

body.mf-world-cup-page .mf-wc-exp-countries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: .72rem;
}

body.mf-world-cup-page .mf-wc-exp-country,
body.mf-world-cup-page .mf-wc-exp-side,
body.mf-world-cup-page .mf-wc-exp-progression,
body.mf-world-cup-page .mf-wc-exp-lanes,
body.mf-world-cup-page .mf-wc-exp-error,
body.mf-world-cup-page .mf-wc-experience-loading {
  border: 1px solid rgba(245, 200, 66, .22);
  border-radius: .95rem;
  background: linear-gradient(145deg, rgba(4, 16, 13, .92), rgba(6, 26, 25, .74));
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

body.mf-world-cup-page .mf-wc-exp-country {
  position: relative;
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  min-height: 15rem;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.mf-world-cup-page .mf-wc-exp-country::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, color-mix(in srgb, var(--wc-accent), transparent 18%), transparent 42%),
    linear-gradient(145deg, transparent 58%, color-mix(in srgb, var(--wc-accent-2), transparent 28%));
  opacity: .72;
  pointer-events: none;
}

body.mf-world-cup-page .mf-wc-exp-country:hover,
body.mf-world-cup-page .mf-wc-exp-country:focus-within {
  transform: translateY(-4px);
  border-color: rgba(245, 200, 66, .55);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .36);
}

body.mf-world-cup-page .mf-wc-exp-country__flag,
body.mf-world-cup-page .mf-wc-exp-country__body {
  position: relative;
  z-index: 1;
}

body.mf-world-cup-page .mf-wc-exp-country__flag {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, var(--wc-accent), var(--wc-accent-2));
}

body.mf-world-cup-page .mf-wc-exp-country__flag span {
  padding: .42rem;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: .7rem;
  background: rgba(0, 0, 0, .34);
  color: #fff;
  font: 900 1rem/1 var(--f-mono, "JetBrains Mono", monospace);
  letter-spacing: .08em;
}

body.mf-world-cup-page .mf-wc-exp-country__body,
body.mf-world-cup-page .mf-wc-exp-side,
body.mf-world-cup-page .mf-wc-exp-progression,
body.mf-world-cup-page .mf-wc-exp-lanes,
body.mf-world-cup-page .mf-wc-exp-error,
body.mf-world-cup-page .mf-wc-experience-loading {
  padding: .82rem;
}

body.mf-world-cup-page .mf-wc-exp-country h3,
body.mf-world-cup-page .mf-wc-exp-lane h3 {
  margin: .12rem 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.05;
}

body.mf-world-cup-page .mf-wc-exp-country p,
body.mf-world-cup-page .mf-wc-exp-lane p,
body.mf-world-cup-page .mf-wc-exp-primary-link span,
body.mf-world-cup-page .mf-wc-exp-link p,
body.mf-world-cup-page .mf-wc-exp-source-note small {
  margin: 0;
  color: rgba(237, 245, 242, .72);
  font-size: .78rem;
  line-height: 1.35;
}

body.mf-world-cup-page .mf-wc-exp-primary-link,
body.mf-world-cup-page .mf-wc-exp-link {
  display: grid;
  gap: .22rem;
  min-width: 0;
  text-decoration: none;
}

body.mf-world-cup-page .mf-wc-exp-primary-link {
  margin-block: .68rem;
  padding: .68rem;
  border: 1px solid rgba(245, 200, 66, .26);
  border-radius: .78rem;
  background: rgba(0, 0, 0, .34);
}

body.mf-world-cup-page .mf-wc-exp-primary-link strong,
body.mf-world-cup-page .mf-wc-exp-link strong {
  color: #f7fbfa;
  font-size: .86rem;
  line-height: 1.2;
}

body.mf-world-cup-page .mf-wc-exp-mini-links,
body.mf-world-cup-page .mf-wc-exp-lane__links,
body.mf-world-cup-page .mf-wc-exp-latest {
  display: grid;
  gap: .46rem;
}

body.mf-world-cup-page .mf-wc-exp-link {
  padding: .58rem;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: .7rem;
  background: rgba(255, 255, 255, .045);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

body.mf-world-cup-page .mf-wc-exp-link:hover,
body.mf-world-cup-page .mf-wc-exp-link:focus-visible {
  transform: translateX(3px);
  border-color: rgba(245, 200, 66, .58);
  background: rgba(245, 200, 66, .08);
}

body.mf-world-cup-page .mf-wc-exp-link__meta {
  color: #f5c842;
  font: 850 .58rem/1.2 var(--f-mono, "JetBrains Mono", monospace);
  letter-spacing: .05em;
  text-transform: uppercase;
}

body.mf-world-cup-page .mf-wc-exp-side {
  display: grid;
  gap: .75rem;
  align-self: stretch;
}

body.mf-world-cup-page .mf-wc-exp-source-note {
  padding: .72rem;
  border: 1px dashed rgba(245, 200, 66, .3);
  border-radius: .78rem;
  background: rgba(0, 0, 0, .28);
}

body.mf-world-cup-page .mf-wc-exp-lower {
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  margin-top: .78rem;
}

body.mf-world-cup-page .mf-wc-exp-rounds,
body.mf-world-cup-page .mf-wc-exp-lane-grid {
  display: grid;
  gap: .56rem;
  margin-top: .72rem;
}

body.mf-world-cup-page .mf-wc-exp-round {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .76rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

body.mf-world-cup-page .mf-wc-exp-round__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .68rem .72rem;
  border: 0;
  background: transparent;
  color: #f7fbfa;
  cursor: pointer;
  text-align: left;
}

body.mf-world-cup-page .mf-wc-exp-round__toggle strong {
  display: inline-grid;
  min-width: 2.25rem;
  min-height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: #f5c842;
  color: #06110c;
}

body.mf-world-cup-page .mf-wc-exp-round__body {
  padding: 0 .72rem .72rem;
}

body.mf-world-cup-page .mf-wc-exp-round__body p,
body.mf-world-cup-page .mf-wc-exp-round__body small {
  color: rgba(237, 245, 242, .72);
  font-size: .76rem;
}

body.mf-world-cup-page .mf-wc-exp-round__body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .42rem;
  margin: .5rem 0 0;
  padding: 0;
  list-style: none;
}

body.mf-world-cup-page .mf-wc-exp-round__body li {
  display: grid;
  gap: .12rem;
  padding: .52rem;
  border-radius: .56rem;
  background: rgba(0, 0, 0, .3);
}

body.mf-world-cup-page .mf-wc-exp-round__body li span {
  color: #f5c842;
  font: 850 .58rem/1 var(--f-mono, "JetBrains Mono", monospace);
}

body.mf-world-cup-page .mf-wc-exp-round__body li strong {
  color: #fff;
  font-size: .76rem;
}

body.mf-world-cup-page .mf-wc-exp-lane {
  display: grid;
  gap: .5rem;
  padding: .72rem;
  border: 1px solid rgba(245, 200, 66, .22);
  border-radius: .82rem;
  background: rgba(255, 255, 255, .035);
}

@media (prefers-reduced-motion: reduce) {
  body.mf-world-cup-page .mf-wc-exp-country,
  body.mf-world-cup-page .mf-wc-exp-link {
    transition: none;
  }
}

@media (max-width: 980px) {
  body.mf-world-cup-page .mf-wc-exp-head,
  body.mf-world-cup-page .mf-wc-exp-board,
  body.mf-world-cup-page .mf-wc-exp-lower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.mf-world-cup-page .mf-wc-exp-country {
    grid-template-columns: 1fr;
  }

  body.mf-world-cup-page .mf-wc-exp-country__flag {
    min-height: 4rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  body.mf-world-cup-page .mf-wc-exp-round__body ul {
    grid-template-columns: 1fr;
  }
}
