:root {
  --mouse-x: 0;
  --mouse-y: 0;
}

.arena::before {
  transform: scale(1.055) translate(calc(var(--mouse-x) * -5px), calc(var(--mouse-y) * -3px));
  transition: transform 900ms cubic-bezier(.2, .75, .25, 1);
  animation: arena-cinematic-breathe 13s ease-in-out infinite alternate;
}

.arena::after {
  background:
    linear-gradient(90deg, rgba(6, 31, 48, .38), transparent 28%, transparent 72%, rgba(53, 5, 46, .36)),
    radial-gradient(circle at 50% 42%, rgba(32, 23, 11, .03) 0 16%, rgba(5, 5, 5, .3) 45%, rgba(3, 3, 3, .8) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, .72) 0, rgba(3, 3, 3, .05) 25%, rgba(3, 3, 3, .2) 62%, rgba(3, 3, 3, .94) 100%);
}

.hero-fighters {
  position: fixed;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-fighters__portrait {
  position: absolute;
  top: 11%;
  width: clamp(330px, 36vw, 580px);
  aspect-ratio: 1;
  object-fit: cover;
  opacity: .82;
  filter: saturate(.9) contrast(1.08) brightness(.7);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 72% 80% at 50% 48%, #000 42%, rgba(0,0,0,.92) 61%, transparent 84%);
  mask-image: radial-gradient(ellipse 72% 80% at 50% 48%, #000 42%, rgba(0,0,0,.92) 61%, transparent 84%);
}

.hero-fighters__portrait--blue { left: -8%; }
.hero-fighters__portrait--red { right: -8%; transform: scaleX(-1); }

.arena-light {
  position: fixed;
  z-index: 0;
  top: -26vh;
  width: 36vw;
  height: 95vh;
  opacity: .3;
  filter: blur(22px);
  pointer-events: none;
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  mix-blend-mode: screen;
  animation: light-search 10s ease-in-out infinite alternate;
}

.arena-light--blue {
  left: 0;
  background: linear-gradient(180deg, rgba(56, 207, 255, .42), transparent 70%);
  transform: rotate(4deg);
}

.arena-light--red {
  right: 0;
  background: linear-gradient(180deg, rgba(255, 48, 177, .4), transparent 70%);
  transform: rotate(-4deg);
  animation-delay: -5s;
}

.site-header {
  position: relative;
  z-index: 5;
  margin: 12px 12px 0;
  padding-right: clamp(22px, 4vw, 58px);
  padding-left: clamp(22px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-bottom-color: rgba(255, 89, 190, .22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 13, 22, .78), rgba(7, 8, 14, .52));
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22), inset 0 1px rgba(255,255,255,.06);
}

.brand__name { font-size: clamp(1rem, 1.5vw, 1.3rem); }

.hero {
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 4%;
  left: 50%;
  width: min(80vw, 960px);
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(234, 183, 77, .08);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) perspective(800px) rotateX(70deg);
  box-shadow: 0 0 80px rgba(221, 160, 43, .05), inset 0 0 70px rgba(221, 160, 43, .03);
}

.hero__content {
  transform: translate(calc(var(--mouse-x) * 2px), calc(var(--mouse-y) * 1px));
  transition: transform 900ms cubic-bezier(.2, .75, .25, 1);
}

.hero__belt {
  display: block;
  width: clamp(300px, 31vw, 460px);
  height: auto;
  margin: -10px auto -22px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .82)) drop-shadow(0 0 34px rgba(255, 68, 183, .22));
  animation: reveal-up 650ms 80ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__logo {
  position: relative;
  font-size: clamp(3.7rem, 8vw, 7.2rem);
  letter-spacing: -.035em;
}

.hero__logo::before,
.hero__logo::after {
  width: clamp(35px, 6vw, 92px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(245, 209, 126, .6));
}

.hero__logo::after { transform: scaleX(-1); }

.hero__headline {
  color: #f2efff;
  font-style: normal;
}

.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: min(100%, 240px);
  margin: 17px auto 0;
  animation: reveal-up 500ms 470ms cubic-bezier(.2, .75, .25, 1) both;
}

.hero__rule i {
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 184, 88, .54));
}

.hero__rule i:last-child { transform: scaleX(-1); }
.hero__rule b { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

.hero__cta {
  border-radius: 2px;
  background: linear-gradient(110deg, #8ae8ff 0%, #9b6cff 42%, #ff4fb8 100%);
  box-shadow: 0 18px 44px rgba(139, 88, 255, .32), 0 0 44px rgba(255, 79, 184, .16), inset 0 1px rgba(255,255,255,.55);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.hero__badges li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(6, 7, 9, .28);
  backdrop-filter: blur(6px);
}

.hero__cta-note {
  margin: 9px 0 -7px;
  color: rgba(255,255,255,.52);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}


.trailer-section {
  border-top-color: rgba(171, 120, 255, .28);
  box-shadow: inset 0 35px 80px rgba(0, 0, 0, .4);
}

.site-header {
  justify-content: space-between;
}

.site-header__guide-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header > .language-switcher--inline {
  margin-left: auto;
}

.site-header__guide-nav button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: rgba(242, 239, 255, .7);
  background: rgba(8, 8, 14, .44);
  font: inherit;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-header__guide-nav button:last-child {
  border-color: rgba(138, 232, 255, .26);
  color: #9beaff;
}

.site-header__guide-nav button:hover {
  color: #fff;
  border-color: rgba(255, 117, 188, .5);
  background: rgba(255, 79, 184, .08);
  transform: translateY(-1px);
}

.site-header__guide-nav button:focus-visible,
.game-guide__tab:focus-visible,
.game-guide__cta:focus-visible,
.game-guide__close:focus-visible {
  outline: 3px solid #8ae8ff;
  outline-offset: 3px;
}

body.is-guide-open { overflow: hidden; }
body.is-guide-fallback::before {
  position: fixed;
  z-index: 9998;
  inset: 0;
  content: "";
  background: rgba(2, 2, 7, .82);
  backdrop-filter: blur(18px) saturate(.72);
}

.game-guide-dialog {
  width: min(1240px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  color: #f2efff;
  background: rgba(7, 7, 12, .97);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .75), 0 0 80px rgba(112, 70, 255, .12);
}

.game-guide-dialog:not([open]) { display: none; }

.game-guide-dialog.is-fallback {
  position: fixed;
  z-index: 9999;
  inset: 14px;
}

.game-guide-dialog::backdrop {
  background: rgba(2, 2, 7, .82);
  backdrop-filter: blur(18px) saturate(.72);
}

.game-guide {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 3.4vw, 46px) 0 32px;
  color: #f2efff;
}

.game-guide::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(231,184,88,.45), transparent);
}

.game-guide__header {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-right: 66px;
}

.game-guide__close {
  position: absolute;
  top: -18px;
  right: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  color: #f6f2ff;
  background: rgba(255,255,255,.055);
  font: 300 1.65rem/1 system-ui, sans-serif;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.game-guide__close:hover {
  border-color: rgba(255,117,188,.55);
  background: rgba(255,79,184,.12);
  transform: translateY(-1px);
}

.game-guide__header > p {
  max-width: 250px;
  margin: 0 0 5px;
  color: rgba(242, 239, 255, .48);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.game-guide__eyebrow {
  margin: 0 0 12px;
  color: #e7b858;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .27em;
}

.game-guide h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.game-guide__tabs {
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px 24px 0 0;
  background: rgba(5, 5, 10, .72);
  backdrop-filter: blur(18px);
}

.game-guide__tab {
  position: relative;
  display: block;
  flex: 1;
  min-height: 72px;
  padding: 15px 20px 14px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 17px;
  color: rgba(242, 239, 255, .5);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.game-guide__tab::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #8ae8ff, #9b6cff 48%, #ff4fb8);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.game-guide__tab strong,
.game-guide__tab small { display: block; }
.game-guide__tab strong {
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.game-guide__tab small {
  margin-top: 4px;
  color: rgba(242, 239, 255, .4);
  font-size: .69rem;
}

.game-guide__tab:hover,
.game-guide__tab.is-active {
  color: #fff;
  border-color: rgba(155, 108, 255, .35);
  background: linear-gradient(135deg, rgba(90, 59, 171, .2), rgba(255, 79, 184, .08));
}

.game-guide__tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.game-guide__panel {
  min-height: 620px;
  padding: clamp(26px, 3.2vw, 42px);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(circle at 0 0, rgba(63, 198, 255, .1), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(255, 79, 184, .1), transparent 38%),
    linear-gradient(145deg, rgba(18,16,25,.96), rgba(7,7,11,.94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25), inset 0 1px rgba(255,255,255,.025);
}

.game-guide__panel[hidden] { display: none; }

.game-guide__story {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.game-guide__story-art {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid rgba(138,232,255,.2);
  border-radius: 24px 24px 70px 24px;
  background:
    radial-gradient(circle at 32% 42%, rgba(87,207,255,.24), transparent 35%),
    radial-gradient(circle at 75% 85%, rgba(255,79,184,.2), transparent 42%),
    linear-gradient(150deg, #131323, #08080e 70%);
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 26px 50px rgba(0,0,0,.32);
}

.game-guide__story-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(130deg, transparent 40%, rgba(255,255,255,.05), transparent 62%);
}

.game-guide__story-art > span {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(255,255,255,.15);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 950;
  letter-spacing: -.05em;
  writing-mode: vertical-rl;
}

.game-guide__story-fighter {
  position: absolute;
  z-index: 2;
  right: -5%;
  bottom: -9%;
  width: 88%;
  max-height: 108%;
  object-fit: contain;
  object-position: bottom right;
  filter: saturate(.88) contrast(1.06);
}

.game-guide__story-belt {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 7%;
  width: 48%;
  opacity: .2;
  filter: blur(.2px) saturate(.8);
  transform: rotate(-8deg);
}

.game-guide__story-copy h3,
.game-guide__fightweek-intro h3 {
  margin: 0;
  font-size: clamp(2.3rem, 3.75vw, 3.8rem);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.game-guide__story-copy h3 span,
.game-guide__fightweek-intro h3 span {
  color: #ff68b7;
}

.game-guide__story-copy > p {
  max-width: 650px;
  margin: 15px 0 0;
  color: rgba(242,239,255,.66);
  font-size: .9rem;
  line-height: 1.62;
}

.game-guide__story-copy .game-guide__lead {
  color: rgba(255,255,255,.88);
  font-size: 1.03rem;
  line-height: 1.55;
}

.game-guide__career {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 28px;
  padding-left: 22px;
}

.game-guide__career::before {
  position: absolute;
  top: 10px;
  bottom: 14px;
  left: 5px;
  width: 1px;
  content: "";
  background: linear-gradient(#8ae8ff, #9b6cff 45%, #ff4fb8 78%, #e7b858);
}

.game-guide__career article {
  position: relative;
  padding: 0 0 24px;
}

.game-guide__career article::before {
  position: absolute;
  top: 6px;
  left: -21px;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid #0b0b12;
  border-radius: 50%;
  background: #8ae8ff;
  box-shadow: 0 0 0 3px rgba(138,232,255,.13), 0 0 16px rgba(138,232,255,.45);
}

.game-guide__career article:nth-child(even)::before { display: none; }
.game-guide__career h4,
.game-guide__career small,
.game-guide__career p { margin: 0; }
.game-guide__career small {
  color: #8ae8ff;
  font-size: .6rem;
  font-weight: 950;
  letter-spacing: .17em;
}
.game-guide__career h4 {
  margin-top: 5px;
  color: #fff;
  font-size: .96rem;
  line-height: 1.35;
}
.game-guide__career p {
  margin-top: 7px;
  color: rgba(242,239,255,.57);
  font-size: .79rem;
  line-height: 1.55;
}

.game-guide__promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 2px 0 0;
  color: rgba(231,184,88,.72);
  font-size: .6rem;
  font-weight: 950;
  letter-spacing: .16em;
}
.game-guide__promise i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff68b7;
  box-shadow: 0 0 12px rgba(255,104,183,.8);
}

.game-guide__fightweek-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .65fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.game-guide__fightweek-intro .game-guide__eyebrow { grid-column: 1 / -1; }
.game-guide__fightweek-intro > p:last-child {
  margin: 0;
  color: rgba(242,239,255,.64);
  font-size: .93rem;
  line-height: 1.65;
}

.game-guide__fightweek-intro h3 {
  font-size: clamp(2.2rem, 3.25vw, 3.25rem);
  line-height: .94;
}

.game-guide__fightweek {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.game-guide__fightweek article {
  position: relative;
  min-height: 150px;
  padding: 24px 24px 22px 38%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background: rgba(5,5,10,.6);
}

.game-guide__fightweek article::before {
  position: absolute;
  inset: 0 62% 0 0;
  content: "";
  background-position: center;
  background-size: cover;
  opacity: .62;
  filter: saturate(.8) contrast(1.08);
}

.game-guide__fightweek article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 0 22%, rgba(5,5,10,.96) 38% 100%);
  pointer-events: none;
}

.game-guide__fightweek article[data-scene="gym"]::before { background-image: url("assets/cinematics/first-day-entry.jpg"); }
.game-guide__fightweek article[data-scene="tape"]::before { background-image: url("assets/cinematics/first-day-coach.jpg"); }
.game-guide__fightweek article[data-scene="cage"]::before { background-image: url("assets/cinematics/first-day-cage.jpg"); }
.game-guide__fightweek article[data-scene="world"]::before { background-image: url("assets/mma-legacy-arena-opposites-v1.jpg"); }

.game-guide__fightweek article > * { position: relative; z-index: 2; }
.game-guide__fightweek small,
.game-guide__fightweek h4,
.game-guide__fightweek p { display: block; margin: 0; }
.game-guide__fightweek small {
  color: #8ae8ff;
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .16em;
}
.game-guide__fightweek h4 {
  margin-top: 6px;
  font-size: 1rem;
  text-transform: uppercase;
}
.game-guide__fightweek p {
  margin-top: 9px;
  color: rgba(242,239,255,.55);
  font-size: .78rem;
  line-height: 1.52;
}

.game-guide__loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 1.5vw, 18px);
  margin-top: 18px;
  padding: 17px 20px;
  border: 1px solid rgba(231,184,88,.22);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(231,184,88,.08), rgba(155,108,255,.09), rgba(255,79,184,.08));
  text-transform: uppercase;
}
.game-guide__loop small {
  margin-right: auto;
  color: #e7b858;
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .17em;
}
.game-guide__loop strong { font-size: .74rem; letter-spacing: .07em; }
.game-guide__loop i { color: #ff75bc; font-size: .5rem; font-style: normal; }

.game-guide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(8,8,14,.74);
}
.game-guide__footer strong,
.game-guide__footer span { display: block; }
.game-guide__footer strong { text-transform: uppercase; }
.game-guide__footer span { margin-top: 5px; color: rgba(242,239,255,.45); font-size: .7rem; }

.game-guide__cta {
  display: block;
  min-width: 230px;
  padding: 17px 24px;
  border-radius: 12px;
  color: #08070c;
  background: linear-gradient(110deg, #8ae8ff 0%, #9b6cff 42%, #ff4fb8 100%);
  box-shadow: 0 16px 40px rgba(139,88,255,.25);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.game-guide__legal {
  margin: 20px auto 0;
  color: rgba(242,239,255,.35);
  font-size: .68rem;
  line-height: 1.5;
  text-align: center;
}

@keyframes light-search {
  from { opacity: .18; filter: blur(28px); }
  to { opacity: .36; filter: blur(16px); }
}

@keyframes arena-cinematic-breathe {
  from {
    transform: scale(1.045) translate(calc(var(--mouse-x) * -5px), calc(var(--mouse-y) * -3px));
  }
  to {
    transform: scale(1.065) translate(calc(var(--mouse-x) * -5px), calc(var(--mouse-y) * -3px));
  }
}

@media (max-width: 1050px) and (min-width: 761px) {
  .game-guide__story { grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr); }
  .game-guide__story-art { min-height: 330px; }
  .game-guide__fightweek article { padding-left: 34%; }
}

@media (max-width: 760px) {
  .game-guide-dialog {
    width: calc(100vw - 14px);
    max-height: calc(100dvh - 14px);
    border-radius: 22px;
  }
  .site-header {
    flex-wrap: wrap;
    margin: 7px 7px 0;
  }
  .site-header > .language-switcher--inline { margin-left:auto; }
  .site-header__guide-nav { width: 100%; }
  .site-header__guide-nav button { flex: 1; min-height: 42px; }
  .hero__belt { width: min(78vw, 330px); margin-top: -10px; margin-bottom: -14px; }
  .hero-fighters__portrait {
    top: 8%;
    width: 62vw;
    opacity: .38;
  }
  .hero-fighters__portrait--blue { left: -34%; }
  .hero-fighters__portrait--red { right: -34%; }
  .hero__logo::before,
  .hero__logo::after { display: none; }
  .game-guide { width: min(100% - 28px, 1180px); }
  .game-guide__header { padding-right: 58px; }
  .game-guide__close { top: -12px; width: 44px; height: 44px; border-radius: 14px; }
  .game-guide__header,
  .game-guide__story,
  .game-guide__fightweek-intro,
  .game-guide__footer { display: block; }
  .game-guide__header > p { margin-top: 14px; text-align: left; }
  .game-guide__story-art { min-height: 280px; margin-bottom: 28px; }
  .game-guide__story-fighter { width: min(84%, 430px); }
  .game-guide__career,
  .game-guide__fightweek { grid-template-columns: 1fr; }
  .game-guide__career article:nth-child(even)::before { display: block; }
  .game-guide__fightweek-intro > p:last-child { margin-top: 18px; }
  .game-guide__fightweek article { min-height: 140px; padding-left: 37%; }
  .game-guide__panel { min-height: 0; }
  .game-guide__loop { flex-wrap: wrap; justify-content: flex-start; }
  .game-guide__loop small { width: 100%; margin: 0 0 4px; }
  .game-guide__cta { margin-top: 17px; }
}

@media (max-width: 430px) {
  .site-header { padding-right: 14px; padding-left: 14px; }
  .hero__badges li { padding: 6px 8px; }
  .game-guide__tabs { gap: 6px; padding: 6px; border-radius: 18px 18px 0 0; }
  .game-guide__tab {
    min-height: 78px;
    padding: 14px;
  }
  .game-guide__tab small { display: none; }
  .game-guide__tab strong { align-self: center; font-size: .69rem; text-align: center; }
  .game-guide__panel { padding: 24px 18px; border-radius: 0 0 18px 18px; }
  .game-guide__story-art { min-height: 235px; border-radius: 18px 18px 52px 18px; }
  .game-guide__story-copy h3,
  .game-guide__fightweek-intro h3 { font-size: clamp(2.2rem, 12vw, 3.35rem); }
  .game-guide__career { padding-left: 19px; }
  .game-guide__career article::before { left: -18px; }
  .game-guide__promise { flex-wrap: wrap; gap: 8px; text-align: center; }
  .game-guide__fightweek article { min-height: 156px; padding: 20px 18px 18px 36%; }
  .game-guide__fightweek article::before { right: 64%; }
  .game-guide__loop { gap: 7px; }
  .game-guide__loop strong { font-size: .62rem; }
  .game-guide__footer { padding: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  .arena::before,
  .hero__content { transform: none; transition: none; }
  .arena-light { animation: none; }
}
