:root {
  --ink: #090d12;
  --ink-2: #111820;
  --paper: #d5d5ce;
  --paper-2: #bfc4c2;
  --red: #ff3c20;
  --orange: #ff8d16;
  --yellow: #ffd318;
  --cyan: #15c9ed;
  --blue: #1676d2;
  --white: #f5f7f5;
  --muted: #95a1aa;
  --max: 1480px;
  --header-h: 86px;
  --driver-accent: #ff3f22;
  --driver-accent2: #ffbb22;
  --driver-accent3: #8b183a;
  --progress: 3.7%;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0b1016;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}
/* HEADER */
.topbar {
  height: var(--header-h);
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 2.4vw;
  background:
    linear-gradient(90deg, rgba(255,60,32,.13), transparent 25%),
    linear-gradient(180deg, rgba(10,14,20,.98), rgba(3,5,8,.96));
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 35px rgba(0,0,0,.34);
  transition: height .32s ease, background .32s ease, box-shadow .32s ease;
}
.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow) 35%, var(--cyan) 70%, transparent);
  opacity: .8;
}
.topbar.is-compact {
  --header-h: 58px;
  background: rgba(4,7,10,.95);
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
}
.brand {
  width: 150px;
  height: 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: width .32s ease, height .32s ease;
}
.brand img {
  width: 142px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.5));
  transition: width .32s ease, height .32s ease;
}
.topbar.is-compact .brand { width: 104px; height: 54px; }
.topbar.is-compact .brand img { width: 100px; height: 54px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 2vw;
  height: 100%;
}
.main-nav a {
  min-width: 125px;
  height: 58px;
  padding: 0 15px 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e8ecec;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(150deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, height .32s ease, min-width .32s ease;
}
.main-nav a:hover,
.main-nav a.active {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--yellow) 65%, transparent);
  background: linear-gradient(145deg, rgba(255,211,24,.18), rgba(21,201,237,.08));
}
.nav-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  color: var(--yellow);
  background: #0b1016;
  border: 1px solid rgba(255,255,255,.14);
  transform: skewX(-8deg);
}
.nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: skewX(8deg);
}
.nav-copy { display: flex; flex-direction: column; line-height: 1; }
.nav-copy b {
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: .86rem;
  letter-spacing: 1px;
}
.nav-copy small {
  margin-top: 6px;
  color: #7f8b92;
  font-size: .53rem;
  letter-spacing: 1.15px;
  white-space: nowrap;
}
.topbar.is-compact .main-nav a { height: 42px; min-width: 96px; padding-right: 10px; }
.topbar.is-compact .nav-icon { width: 25px; height: 25px; flex-basis: 25px; }
.topbar.is-compact .nav-icon svg { width: 15px; height: 15px; }
.topbar.is-compact .nav-copy small { display: none; }
.topbar.is-compact .nav-copy b { font-size: .72rem; }
.top-download {
  margin-left: auto;
  min-width: 205px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  color: #090b0c;
  background: linear-gradient(135deg, var(--yellow), #ff9a16);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
  box-shadow: 0 10px 22px rgba(255,170,20,.2);
  transition: height .32s ease, min-width .32s ease, transform .2s ease;
}
.top-download:hover { transform: translateY(-2px); }
.download-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0b1016;
  font-size: 1.25rem;
  font-weight: 900;
}
.top-download > span:last-child { display: flex; flex-direction: column; }
.top-download b { font-family: Impact, "Arial Narrow Bold", sans-serif; letter-spacing: .8px; }
.top-download small { margin-top: 3px; font-size: .58rem; letter-spacing: 1.2px; }
.topbar.is-compact .top-download { height: 44px; min-width: 166px; padding: 0 14px; }
.topbar.is-compact .download-mark { width: 27px; height: 27px; font-size: 1rem; }
.topbar.is-compact .top-download small { display: none; }
.nav-toggle { display: none; margin-left: auto; background: transparent; border: 0; width: 44px; }
.nav-toggle span { display: block; height: 3px; background: #fff; margin: 6px 0; }
/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 86px;
  background: #0a1016;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5,9,12,.1), rgba(5,9,12,.7)), url('assets/backgrounds/hero-world.svg');
  background-size: cover;
  background-position: center;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 150px; background: linear-gradient(transparent,#0b1016); }
.hero-speed { position: absolute; height: 8px; width: 58vw; right: -12vw; transform: rotate(-31deg); filter: drop-shadow(0 0 14px currentColor); }
.hero-speed-a { top: 20%; background: var(--cyan); color: var(--cyan); }
.hero-speed-b { bottom: 13%; background: var(--red); color: var(--red); }
.hero-inner { width: min(var(--max),94vw); margin: auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 4vw; position: relative; z-index: 2; align-items: center; }
.hero-copy { padding: 5vh 0; }
.kicker,.section-eyebrow,.driver-kicker { font-family: Impact,"Arial Narrow Bold",sans-serif; letter-spacing: 4px; font-size: .88rem; color: var(--cyan); margin: 0 0 16px; }
.hero-logo { width: min(660px,90%); filter: drop-shadow(0 22px 24px rgba(0,0,0,.55)); }
.hero-lead { max-width: 680px; color: #c3ccd2; font-size: 1.08rem; line-height: 1.8; margin: 22px 0 30px; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.action { min-width: 220px; padding: 16px 23px; display: flex; flex-direction: column; clip-path: polygon(0 0,94% 0,100% 27%,100% 100%,6% 100%,0 73%); transition: .25s; }
.action span { font-family: Impact,"Arial Narrow Bold",sans-serif; letter-spacing: 1px; font-size: 1.1rem; }
.action small { font-size: .66rem; letter-spacing: 1.5px; margin-top: 4px; }
.action-primary { background: var(--yellow); color: #080b0d; }
.action-dark { background: #151c24; border: 1px solid #3b4650; }
.action:hover { transform: translateY(-5px); }
.hero-poster { height: min(650px,68vh); position: relative; display: grid; place-items: center; }
.poster-ring { position: absolute; width: 480px; height: 480px; border: 55px solid rgba(255,62,30,.2); border-radius: 50%; box-shadow: 0 0 0 15px rgba(17,199,233,.08),0 0 90px rgba(255,67,31,.15); }
.poster-road { position: absolute; width: 220px; height: 690px; background: repeating-linear-gradient(0deg,#1c232a 0 86px,#e6c929 86px 102px); transform: rotate(29deg); clip-path: polygon(24% 0,76% 0,100% 100%,0 100%); opacity: .75; }
.poster-title { position: relative; font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: clamp(4.5rem,7vw,8.5rem); line-height: .8; text-align: center; letter-spacing: 2px; text-shadow: 8px 8px 0 #10151a,-2px -2px 0 #ff4b26; }
.poster-tag { position: absolute; bottom: 11%; background: var(--cyan); color: #051015; font-weight: 900; letter-spacing: 3px; padding: 12px 30px; transform: rotate(-4deg); }
.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .65rem; letter-spacing: 3px; color: #adb6bc; }
.scroll-cue i { width: 1px; height: 42px; background: linear-gradient(var(--yellow),transparent); }
/* SHARED SECTIONS */
.section-shell { position: relative; padding: 105px max(4vw,calc((100vw - var(--max))/2)); overflow: hidden; }
.section-heading { position: relative; z-index: 2; }
.section-heading.center { text-align: center; }
.section-heading h2,.creator-copy h2,.download h2 { font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: clamp(3.4rem,6vw,6.6rem); letter-spacing: 1px; line-height: .88; margin: 0; color: #0b1014; }
.news,.tutorial,.features { background: linear-gradient(180deg,#c9d2d6,#aebcc2); color: #0b0f13; }
.news::before,.tutorial::before,.features::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(20,34,42,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(20,34,42,.05) 1px,transparent 1px); background-size: 55px 55px; }
.section-eyebrow { color: #26343b; margin-bottom: 8px; }
.brush { position: absolute; width: 46vw; height: 150px; transform: rotate(-9deg); opacity: .75; }
.brush-cyan { background: linear-gradient(90deg,transparent,var(--cyan),transparent); right: -5vw; top: 30px; }
.brush-orange { background: linear-gradient(90deg,transparent,var(--orange),transparent); left: -8vw; top: 50px; }
.brush-blue { background: linear-gradient(90deg,transparent,#0fa9df,transparent); right: -6vw; top: 30px; }
/* NEWS */
.news-tabs { position: absolute; top: 120px; right: max(4vw,calc((100vw - var(--max))/2)); display: flex; background: #0b0f13; }
.tab { border: 0; background: transparent; color: #fff; padding: 17px 36px; font-family: Impact,"Arial Narrow Bold",sans-serif; letter-spacing: 1px; }
.tab.is-active { background: var(--yellow); color: #090b0d; clip-path: polygon(0 0,94% 0,100% 50%,94% 100%,0 100%,6% 50%); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 42px; position: relative; z-index: 2; }
.news-card { background: #e9edef; color: #0c1114; box-shadow: 0 14px 35px rgba(17,29,36,.18); transition: .3s; overflow: hidden; }
.news-card:hover { transform: translateY(-9px); }
.news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-body { padding: 20px 22px 24px; }
.news-body span { font-weight: 900; color: #ec5a2f; font-size: .72rem; letter-spacing: 1.4px; }
.news-body h3 { font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: 1.42rem; line-height: 1.2; margin: 10px 0 18px; }
.news-body time { color: #78848a; font-size: .75rem; }
/* DRIVERS — REBUILT TO MATCH THE REFERENCE PRESENTATION */
.drivers {
  height: calc(100vh - 58px);
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background: #bfc3c0;
  color: #080b0f;
}
.driver-scene { position: absolute; inset: 0; overflow: hidden; isolation: isolate; }
.driver-paper {
  position: absolute;
  inset: 0;
  z-index: -8;
  background:
    radial-gradient(circle at 23% 27%, rgba(255,255,255,.65), transparent 30%),
    linear-gradient(102deg, #d8d8d0 0 48%, #c5c8c4 48% 100%);
}
.driver-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(28,39,46,.11) 0 1px, transparent 1.4px),
    linear-gradient(110deg, transparent 48%, rgba(255,255,255,.8) 48.3% 48.7%, transparent 49%);
  background-size: 10px 10px, 100% 100%;
}
.driver-city {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -7;
  background: url('assets/backgrounds/hero-world.svg') center bottom / cover no-repeat;
  opacity: .13;
  filter: grayscale(1) contrast(.8);
}
.driver-ghost {
  position: absolute;
  left: 3.5vw;
  top: 22%;
  z-index: -5;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(10rem,22vw,25rem);
  line-height: .72;
  color: rgba(16,29,36,.045);
  white-space: nowrap;
  letter-spacing: 4px;
  transition: opacity .35s, transform .35s;
}
.driver-color-world {
  position: absolute;
  z-index: -4;
  top: -6%;
  right: -5%;
  bottom: -8%;
  left: 34%;
  overflow: hidden;
  clip-path: polygon(34% 0,100% 0,100% 100%,4% 100%,19% 76%,0 63%,17% 41%,7% 22%);
  background:
    radial-gradient(circle at 72% 24%, color-mix(in srgb, var(--driver-accent2) 72%, white 8%) 0 7%, transparent 34%),
    radial-gradient(circle at 82% 72%, color-mix(in srgb, var(--driver-accent3) 80%, black 5%) 0 5%, transparent 34%),
    linear-gradient(118deg, color-mix(in srgb, var(--driver-accent3) 80%, #111 20%) 0 22%, var(--driver-accent) 47%, var(--driver-accent2) 78%, color-mix(in srgb, var(--driver-accent3) 80%, black 20%) 100%);
  box-shadow: inset 110px 0 90px rgba(255,255,255,.08);
  transform-origin: 70% 50%;
  animation: colorWorldIn .85s cubic-bezier(.18,.8,.18,1) both;
}
.driver-color-world::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(145deg, transparent 0 20px, rgba(255,255,255,.08) 20px 23px, transparent 23px 48px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.45) 0 1px, transparent 1.6px);
  background-size: auto, 9px 9px;
  mix-blend-mode: overlay;
  opacity: .45;
}
.driver-color-world::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.2) 34.5% 35.2%, transparent 36%),
    linear-gradient(162deg, transparent 0 64%, rgba(7,12,18,.28) 64% 70%, transparent 70%);
  animation: worldSweep 6s ease-in-out infinite alternate;
}
.driver-color-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.5' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: .65;
}
.driver-color-sparks {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(23deg, transparent 0 44%, color-mix(in srgb,var(--cyan) 75%,white 10%) 44.2% 44.7%, transparent 45%),
    linear-gradient(155deg, transparent 0 66%, rgba(255,255,255,.75) 66.2% 66.45%, transparent 66.8%),
    linear-gradient(12deg, transparent 0 76%, color-mix(in srgb,var(--yellow) 75%,white 10%) 76.2% 76.55%, transparent 77%);
  filter: drop-shadow(0 0 7px rgba(255,255,255,.35));
  animation: sparksMove 3.7s ease-in-out infinite alternate;
}
.driver-backdrop-art {
  position: absolute;
  right: -2%;
  top: -8%;
  width: 58%;
  height: 122%;
  object-fit: contain;
  object-position: center;
  opacity: .22;
  filter: grayscale(.25) contrast(1.15) saturate(.9);
  transform: scale(1.18) translateX(6%);
  mix-blend-mode: multiply;
  animation: backdropIn .9s cubic-bezier(.18,.82,.2,1) both;
}
.driver-slash {
  position: absolute;
  z-index: -2;
  top: -12%;
  bottom: -12%;
  width: 14px;
  transform: rotate(34deg);
  transform-origin: center;
  filter: drop-shadow(0 0 10px currentColor);
}
.slash-cyan { left: 39.2%; width: 10px; color: var(--cyan); background: var(--cyan); }
.slash-white { left: 40.2%; width: 18px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.92); }
.slash-accent { left: 41.8%; width: 6px; color: var(--driver-accent); background: var(--driver-accent); }
.driver-layout {
  position: relative;
  z-index: 3;
  height: 100%;
  width: min(1600px,96vw);
  margin: auto;
}
.driver-copy {
  position: absolute;
  left: 3.2%;
  top: 8.5%;
  width: min(38vw,620px);
  transition: opacity .38s ease, transform .38s ease;
  animation: copyIn .72s cubic-bezier(.18,.82,.2,1) both;
}
.driver-copy.is-exiting { opacity: 0; transform: translateX(-75px); }
.driver-copy h2 {
  margin: 0;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: calc(clamp(5rem,9.2vw,10.5rem) * var(--driver-name-scale,1));
  line-height: .77;
  letter-spacing: 1px;
  color: #07090b;
  text-transform: uppercase;
  max-width: 720px;
  text-shadow: 2px 2px 0 color-mix(in srgb,var(--driver-accent2) 40%,transparent);
}
.driver-kicker {
  color: #11171b;
  font-size: clamp(1.1rem,1.6vw,1.75rem);
  letter-spacing: 1.5px;
  margin: 13px 0 11px;
}
.driver-vehicle {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin: 0 0 9px;
  padding: 4px 13px;
  color: #fff;
  background: linear-gradient(180deg,
    color-mix(in srgb,#151c22 88%,var(--driver-accent) 12%) 0%,
    color-mix(in srgb,#080c10 94%,var(--driver-accent3) 6%) 100%);
  border: 1px solid color-mix(in srgb,var(--driver-accent) 34%,rgba(255,255,255,.10));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 18px rgba(0,0,0,.15);
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: 1rem;
  letter-spacing: 2.5px;
  clip-path: polygon(0 0,calc(100% - 12px) 0,100% 50%,calc(100% - 12px) 100%,0 100%,8px 50%);
}
.driver-tagline {
  max-width: 465px;
  margin: 0 0 18px;
  font-weight: 800;
  font-size: .96rem;
  line-height: 1.45;
  color: #2e373a;
}
.skill-list { display: grid; gap: 12px; width: min(420px,100%); }
.skill {
  min-height: 78px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 13px;
  color: #0b1014;
  animation: skillIn .5s ease both;
}
.skill-icon {
  width: 78px;
  height: 78px;
  padding: 8px;
  display: grid;
  place-items: center;
  background: #42515b;
  border: 4px solid color-mix(in srgb,var(--cyan) 82%,white 8%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.1),0 5px 14px rgba(0,0,0,.16);
}
.skill-icon img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(1.55) contrast(1.2); }
.skill h4 { margin: 0 0 4px; font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: 1.12rem; letter-spacing: .45px; }
.skill p { margin: 0; max-width: 285px; color: #414b4e; font-size: .74rem; line-height: 1.35; }
.view-profile {
  width: 280px;
  min-height: 54px;
  margin-top: 19px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #080b0d;
  background:
    linear-gradient(100deg, rgba(255,255,255,.18), transparent 35%),
    linear-gradient(135deg, var(--yellow), #ffb817);
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: 1.05rem;
  letter-spacing: .6px;
  clip-path: polygon(0 17%,8% 0,92% 0,100% 24%,96% 100%,7% 100%,0 76%);
  box-shadow: 0 9px 18px rgba(255,173,0,.22);
  transition: transform .2s ease, filter .2s ease;
}
.view-profile:hover { transform: translateY(-3px); filter: brightness(1.08); }
.view-profile b { width: 25px; height: 25px; border: 2px solid #111; border-radius: 50%; display: grid; place-items: center; font-size: .63rem; }
.driver-art-wrap {
  position: absolute;
  z-index: 4;
  left: 38%;
  right: 11%;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}
.driver-art-wrap img {
  position: relative;
  z-index: 2;
  height: 98%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(24px 18px 20px rgba(0,0,0,.37));
  transform-origin: bottom center;
  animation: characterIn .82s cubic-bezier(.12,.84,.18,1) both;
}
.driver-art-wrap.is-exiting img { animation: characterOut .38s ease-in forwards; }
.driver-art-glow {
  position: absolute;
  z-index: 1;
  width: 48%;
  height: 72%;
  bottom: 7%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb,var(--driver-accent2) 33%,transparent), transparent 69%);
  filter: blur(14px);
  animation: glowPulse 3.2s ease-in-out infinite alternate;
}
.driver-shadow { position: absolute; bottom: 2.2%; width: 48%; height: 4%; background: rgba(0,0,0,.34); filter: blur(18px); border-radius: 50%; }
.driver-selector {
  position: absolute;
  z-index: 8;
  right: 1.1%;
  top: 15%;
  width: 90px;
  height: 70%;
  display: grid;
  grid-template-rows: 42px 1fr 42px;
  gap: 9px;
}
.selector-arrow {
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg,rgba(255,255,255,.08),transparent),
    #090c10;
  clip-path: polygon(8% 0,92% 0,100% 22%,100% 78%,92% 100%,8% 100%,0 78%,0 22%);
  transition: background .2s, transform .2s;
}
.selector-arrow:hover { background: var(--driver-accent3); transform: scale(1.04); }
.selector-arrow svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.driver-thumbs { display: grid; grid-template-rows: repeat(4,1fr); gap: 8px; overflow: hidden; }
.driver-thumb {
  min-height: 0;
  border: 3px solid rgba(255,255,255,.75);
  background: #28343a;
  overflow: hidden;
  padding: 0;
  position: relative;
  box-shadow: 0 4px 13px rgba(0,0,0,.24);
  transition: border-color .2s, transform .2s, filter .2s;
}
.driver-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transform: scale(1.55); filter: saturate(.78) contrast(1.08); }
.driver-thumb:hover { transform: translateX(-4px); filter: brightness(1.08); }
.driver-thumb.is-active { border-color: #07090b; box-shadow: 0 0 0 3px var(--driver-accent),0 6px 18px rgba(0,0,0,.35); }
.driver-thumb.is-active::after { content: ""; position: absolute; inset: 0; border-right: 5px solid var(--cyan); pointer-events: none; }
.driver-thumb-index { position: absolute; left: 3px; bottom: 2px; padding: 1px 4px; color: #fff; background: rgba(0,0,0,.72); font: 700 .55rem Arial,sans-serif; }
.driver-progress {
  position: absolute;
  z-index: 9;
  left: 3.3%;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Impact,sans-serif;
  font-size: 1.1rem;
}
.driver-progress i { display: block; width: 120px; height: 4px; background: rgba(15,22,26,.25); overflow: hidden; }
.driver-progress i::before { content: ""; display: block; width: var(--progress); height: 100%; background: var(--driver-accent); transition: width .45s ease; }
.driver-progress i b { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,var(--yellow),var(--cyan)); transform-origin: left; animation: autoTimer 6s linear forwards; }
.driver-progress small { margin-left: 5px; font: 700 .55rem Arial,sans-serif; letter-spacing: 1.3px; color: #3f4b50; }
.driver-color-world.is-exiting { animation: colorWorldOut .38s ease-in forwards; }
.driver-color-world.is-exiting .driver-backdrop-art { animation: backdropOut .38s ease-in forwards; }
/* CREATOR */
.creator { min-height: 680px; background: linear-gradient(130deg,#0d151d,#182934); display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 5vw; }
.creator::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg,transparent 0 53%,rgba(21,201,237,.17) 53% 72%,transparent 72%); }
.creator-art { min-height: 480px; position: relative; }
.creator-collage { height: 100%; min-height: 480px; position: relative; background: linear-gradient(145deg,#15242d,#080d12); clip-path: polygon(0 12%,80% 0,100% 70%,18% 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.creator-collage::before,.creator-collage::after { content: ""; position: absolute; width: 400px; height: 400px; border: 50px solid rgba(255,61,31,.55); border-radius: 50%; }
.creator-collage::after { width: 570px; height: 80px; border: 0; background: var(--cyan); transform: rotate(-31deg); opacity: .5; }
.creator-collage span { font-family: Impact,sans-serif; font-size: 17rem; color: #ff3c21; text-shadow: 12px 12px 0 #ffc51a; z-index: 1; }
.creator-collage b { position: absolute; bottom: 55px; right: 50px; font-family: Impact,sans-serif; font-size: 4rem; line-height: .8; z-index: 2; }
.creator-copy { position: relative; z-index: 2; }
.creator-copy .section-eyebrow { color: var(--cyan); }
.creator-copy h2,.download h2 { color: #fff; }
.creator-copy > p { color: #bac7cf; max-width: 620px; line-height: 1.8; }
.creator-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 25px; }
.creator-points article { border: 1px solid rgba(255,255,255,.13); padding: 16px; display: flex; gap: 14px; align-items: center; }
.creator-points strong { font-family: Impact,sans-serif; font-size: 2rem; color: var(--yellow); }
.creator-points span { font-weight: 800; font-size: .78rem; }
.yellow-link { border: 0; background: var(--yellow); color: #0b0f12; font-family: Impact,"Arial Narrow Bold",sans-serif; letter-spacing: .8px; padding: 13px 26px; margin-top: 18px; min-width: 150px; clip-path: polygon(0 0,94% 0,100% 50%,94% 100%,0 100%,6% 50%); display: inline-flex; align-items: center; gap: 12px; }
/* TUTORIAL + FEATURES */
.tutorial-tabs { display: grid; grid-template-columns: repeat(3,1fr); max-width: 760px; margin: 28px auto 34px; background: #090d10; position: relative; z-index: 2; }
.tutorial-tabs button { border: 0; background: #090d10; color: #fff; padding: 12px; font-family: Impact,sans-serif; letter-spacing: 1px; }
.tutorial-tabs button.is-active { background: var(--yellow); color: #0a0d0f; clip-path: polygon(0 0,94% 0,100% 50%,94% 100%,0 100%,6% 50%); }
.tutorial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; position: relative; z-index: 2; max-width: 1120px; margin: auto; }
.tutorial-card { position: relative; background: #111; overflow: hidden; box-shadow: 0 14px 28px rgba(13,27,34,.2); animation: cardIn .4s ease both; }
.tutorial-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: .35s; }
.tutorial-card:hover img { transform: scale(1.06); }
.tutorial-card::before { content: "▶"; position: absolute; z-index: 2; left: 50%; top: 45%; transform: translate(-50%,-50%); width: 55px; height: 55px; border-radius: 50%; border: 2px solid #fff; background: rgba(0,0,0,.5); display: grid; place-items: center; color: #fff; }
.tutorial-card h3 { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; margin: 0; padding: 25px 15px 12px; background: linear-gradient(transparent,rgba(0,0,0,.85)); color: #fff; font-family: Impact,sans-serif; letter-spacing: .8px; }
.feature-stage { position: relative; margin-top: 25px; z-index: 2; overflow: hidden; padding: 20px 60px; }
.feature-track { display: flex; align-items: center; gap: 25px; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.feature-card { min-width: 64%; position: relative; background: #111; box-shadow: 0 20px 45px rgba(14,25,30,.32); transition: .4s; opacity: .55; transform: scale(.88); }
.feature-card.is-active { opacity: 1; transform: scale(1); }
.feature-card img { width: 100%; aspect-ratio: 16/8.2; object-fit: cover; }
.feature-caption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent,rgba(0,0,0,.9)); padding: 70px 28px 25px; color: #fff; }
.feature-caption h3 { font-family: Impact,sans-serif; font-size: 2rem; margin: 0 0 6px; }
.feature-caption p { margin: 0; color: #d3dce0; }
.feature-arrow { position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); width: 46px; height: 90px; border: 0; background: #0b0e10; color: #fff; font-size: 2.4rem; }
.feature-arrow.left { left: 0; }
.feature-arrow.right { right: 0; }
.feature-dots { display: flex; justify-content: center; gap: 8px; position: relative; z-index: 2; }
.feature-dots button { width: 28px; height: 5px; border: 0; background: #68777e; }
.feature-dots button.is-active { background: var(--yellow); width: 54px; }
/* DOWNLOAD + FOOTER */
.download { position: relative; min-height: 540px; background: #0b1117; overflow: hidden; display: flex; align-items: center; }
.download-diagonal { position: absolute; inset: -20% 55% -20% -20%; background: linear-gradient(135deg,#f13d20,#ffae17); transform: skewX(-12deg); }
.download-inner { width: min(var(--max),92vw); margin: auto; position: relative; z-index: 2; display: grid; grid-template-columns: .7fr 1fr .75fr; gap: 4vw; align-items: center; }
.download-inner > img { max-width: 430px; filter: drop-shadow(0 20px 20px rgba(0,0,0,.45)); }
.download-inner p:not(.section-eyebrow) { color: #b8c3ca; line-height: 1.7; }
.download-buttons { display: flex; flex-direction: column; gap: 12px; }
.big-download { background: var(--yellow); color: #080b0d; padding: 18px 22px; display: flex; flex-direction: column; clip-path: polygon(0 0,94% 0,100% 25%,100% 100%,6% 100%,0 75%); }
.big-download span { font-family: Impact,sans-serif; font-size: 1.3rem; letter-spacing: 1px; }
.big-download small { letter-spacing: 1.4px; margin-top: 3px; }
.mirror { text-align: center; padding: 14px; border: 1px solid #53616b; font-family: Impact,sans-serif; letter-spacing: .8px; }
.profile-modal { position: fixed; inset: 0; background: rgba(3,6,8,.9); z-index: 2000; display: grid; place-items: center; padding: 25px; opacity: 0; pointer-events: none; transition: .25s; backdrop-filter: blur(9px); }
.profile-modal.is-open { opacity: 1; pointer-events: auto; }
.profile-card {
  max-width: 1180px;
  width: min(1180px,96vw);
  min-height: 690px;
  color: #0b1014;
  display: grid;
  grid-template-columns: minmax(500px,1.12fr) minmax(370px,.88fr);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 26%,color-mix(in srgb,var(--driver-accent2) 26%,transparent),transparent 34%),
    linear-gradient(118deg,color-mix(in srgb,var(--driver-accent3) 24%,#edf2f4 76%) 0 54%,#d9e1e4 54% 100%);
  border: 1px solid color-mix(in srgb,var(--driver-accent2) 44%,white 56%);
  box-shadow: 0 34px 110px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.65);
  isolation: isolate;
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(116deg,transparent 0 70px,rgba(255,255,255,.055) 70px 72px),
    linear-gradient(102deg,transparent 0 51%,color-mix(in srgb,var(--driver-accent) 24%,transparent) 51.2% 58%,transparent 58.2%);
}
.profile-card::after { content: ""; position: absolute; left: 49%; top: -25%; width: 150px; height: 150%; background: linear-gradient(var(--driver-accent2),var(--driver-accent)); transform: rotate(22deg); opacity: .2; z-index: -1; }
.profile-visual-stage { position: relative; min-height: 690px; overflow: hidden; padding: 0 !important; z-index: 2; }
.profile-visual-glow { position: absolute; inset: 8% 7% 8% 5%; border-radius: 50%; background: radial-gradient(circle,color-mix(in srgb,var(--driver-accent2) 27%,transparent),transparent 66%); filter: blur(8px); }
#modalImage { position: absolute; z-index: 4; left: 7%; bottom: 0; width: 63%; height: 94%; object-fit: contain; object-position: left bottom; filter: drop-shadow(24px 15px 22px rgba(0,0,0,.32)); }
.modal-vehicle-gallery { position: absolute; z-index: 3; right: 1%; bottom: 8%; width: 54%; height: 39%; pointer-events: none; }
.modal-vehicle-image { position: absolute; width: 100%; height: 100%; object-fit: contain; object-position: right bottom; transform: scaleX(-1); filter: drop-shadow(-13px 15px 13px rgba(0,0,0,.36)); }
.modal-vehicle-primary { right: 0; bottom: 0; z-index: 2; }
.modal-vehicle-secondary { right: 7%; bottom: 61%; z-index: 1; width: 86%; height: 86%; opacity: .96; }
.modal-vehicle-gallery:not(.has-two-vehicles) .modal-vehicle-primary { width: 108%; height: 108%; right: -4%; }
.modal-weapon-card {
  position: absolute;
  z-index: 6;
  right: 3.5%;
  top: 5%;
  width: 154px;
  min-height: 184px;
  padding: 13px 12px 11px;
  display: grid;
  grid-template-rows: auto 112px auto;
  gap: 6px;
  text-align: center;
  background: linear-gradient(150deg,rgba(247,250,251,.91),color-mix(in srgb,var(--driver-accent2) 16%,#d9e1e5 84%));
  border: 1px solid color-mix(in srgb,var(--driver-accent) 52%,white 48%);
  clip-path: polygon(0 0,88% 0,100% 12%,100% 100%,12% 100%,0 88%);
  box-shadow: 0 18px 34px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.8);
}
.modal-weapon-kicker { font: 950 .58rem/1 Arial,sans-serif; letter-spacing: 1.2px; color: color-mix(in srgb,var(--driver-accent3) 78%,#26333a 22%); }
#modalWeaponImage { width: 100%; height: 112px; object-fit: contain; filter: drop-shadow(0 8px 8px rgba(0,0,0,.27)); }
#modalWeaponName { font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: .9rem; letter-spacing: 1px; color: var(--driver-accent3); text-transform: uppercase; }
.profile-info-panel { padding: 62px 54px 48px !important; position: relative; z-index: 5; align-self: center; }
.profile-card h2 { font-family: Impact,sans-serif; font-size: clamp(3.6rem,5.2vw,5.5rem); line-height: .84; margin: 0; }
.profile-card h3 { color: var(--driver-accent); font-family: Impact,sans-serif; font-size: 1.8rem; }
.profile-card .modal-special { margin: -8px 0 14px; font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: 1rem; letter-spacing: 1.4px; color: color-mix(in srgb,var(--driver-accent3) 76%,#27333a 24%); border-left: 5px solid var(--driver-accent); padding: 7px 11px; background: rgba(255,255,255,.48); }
.profile-card p { line-height: 1.8; }
.modal-close { position: absolute; z-index: 12; right: 12px; top: 12px; width: 42px; height: 42px; border: 1px solid color-mix(in srgb,var(--driver-accent2) 42%,white 58%); background: color-mix(in srgb,var(--driver-accent3) 75%,#27323a 25%); color: #fff; font-size: 1.8rem; box-shadow: 0 8px 18px rgba(0,0,0,.25); }
footer { background: #050709; min-height: 165px; display: grid; grid-template-columns: 180px 1fr auto; gap: 30px; align-items: center; padding: 35px max(4vw,calc((100vw - var(--max))/2)); color: #8e999f; font-size: .78rem; }
footer img { max-height: 85px; object-fit: contain; }
footer span { color: #dce2e4; }
.is-hidden { display: none !important; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: .75s cubic-bezier(.2,.8,.2,1); }
[data-reveal].revealed { opacity: 1; transform: none; }
/* ANIMATIONS */
@keyframes characterIn { from { opacity: 0; transform: translateX(180px) scale(.92) rotate(.8deg); } 70% { opacity: 1; } to { opacity: 1; transform: translateX(0) scale(1) rotate(0); } }
@keyframes characterOut { to { opacity: 0; transform: translateX(-135px) scale(.95) rotate(-1deg); } }
@keyframes copyIn { from { opacity: 0; transform: translateX(-70px); } to { opacity: 1; transform: none; } }
@keyframes skillIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: none; } }
@keyframes colorWorldIn { from { opacity: .2; transform: translateX(120px) scale(1.05); } to { opacity: 1; transform: none; } }
@keyframes colorWorldOut { to { opacity: .1; transform: translateX(-90px) scale(1.02); } }
@keyframes backdropIn { from { opacity: 0; transform: translateX(140px) scale(1.25); } to { opacity: .22; transform: translateX(6%) scale(1.18); } }
@keyframes backdropOut { to { opacity: 0; transform: translateX(-80px) scale(1.12); } }
@keyframes worldSweep { from { transform: translateX(-2%); } to { transform: translateX(4%); } }
@keyframes sparksMove { from { transform: translate(-1%,-1%); } to { transform: translate(2%,1%); } }
@keyframes glowPulse { from { opacity: .45; transform: scale(.95); } to { opacity: .8; transform: scale(1.06); } }
@keyframes autoTimer { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
/* ======================================================================
   V6 — ROAD-FIRE RESTYLE
   All sections except the driver showcase are rebuilt around the V8 logo
   palette: burnt orange, hot yellow, red, black steel and moving fire.
   ====================================================================== */

:root {
  --v6-ember: #ff5a12;
  --v6-orange: #ff8c17;
  --v6-gold: #ffd31c;
  --v6-red: #ef2e17;
  --v6-steel: #10151b;
  --v6-steel-2: #181f27;
  --v6-smoke: #252b31;
  --v6-line: rgba(255, 178, 32, .34);
}
body {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 79, 13, .12), transparent 32%),
    linear-gradient(180deg, #0a0c10, #10141a 48%, #090b0f);
}
/* ------------------------------ HEADER ------------------------------ */
.topbar {
  height: 92px;
  padding: 0 clamp(18px, 2.8vw, 56px);
  gap: clamp(12px, 1.4vw, 24px);
  background:
    linear-gradient(90deg, rgba(255, 73, 14, .12), transparent 28%, transparent 72%, rgba(255, 166, 24, .08)),
    linear-gradient(180deg, rgba(18, 22, 29, .985), rgba(5, 7, 10, .985));
  border-bottom: 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .46);
  isolation: isolate;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 12%, rgba(255,255,255,.045) 12.2% 12.5%, transparent 12.7% 69%, rgba(255,145,16,.09) 69.2% 69.6%, transparent 69.8%),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(255,255,255,.018) 82px 83px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 83% calc(100% - 12px), 81.8% 100%, 18.2% 100%, 17% calc(100% - 12px), 0 calc(100% - 12px));
}
.topbar::after {
  bottom: 0;
  height: 5px;
  opacity: 1;
  background:
    linear-gradient(90deg, transparent 0 5%, var(--v6-red) 12%, var(--v6-orange) 30%, var(--v6-gold) 48%, var(--v6-orange) 66%, var(--v6-red) 84%, transparent 96%);
  box-shadow: 0 0 15px rgba(255, 99, 11, .6);
}
.topbar.is-compact {
  --header-h: 58px;
  height: 58px;
  background: rgba(7, 9, 12, .975);
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.brand {
  width: 174px;
  height: 84px;
  position: relative;
  flex: 0 0 auto;
}
.brand::after {
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  bottom: 13px;
  width: 2px;
  background: linear-gradient(transparent, var(--v6-orange), transparent);
  box-shadow: 0 0 12px rgba(255, 126, 19, .7);
}
.brand img { width: 158px; height: 82px; }
.topbar.is-compact .brand { width: 116px; height: 54px; }
.topbar.is-compact .brand img { width: 108px; height: 53px; }
.topbar.is-compact .brand::after { top: 7px; bottom: 7px; }
.main-nav {
  margin-left: clamp(0px, 1vw, 18px);
  gap: clamp(6px, .65vw, 11px);
  flex: 1 1 auto;
  justify-content: center;
}
.main-nav a {
  min-width: 118px;
  height: 58px;
  padding: 0 13px 0 10px;
  gap: 9px;
  position: relative;
  overflow: hidden;
  color: #f1f3f4;
  border: 1px solid rgba(255,255,255,.09);
  border-left: 3px solid rgba(255, 128, 19, .6);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018) 54%, rgba(255,104,13,.055));
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.42);
  transition: transform .23s ease, border-color .23s ease, background .23s ease, box-shadow .23s ease, height .32s ease, min-width .32s ease;
}
.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 147, 20, .28), transparent);
  transition: transform .48s cubic-bezier(.2,.8,.2,1);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  transform: scaleX(.18);
  opacity: .45;
  background: linear-gradient(90deg, var(--v6-red), var(--v6-gold));
  box-shadow: 0 0 9px var(--v6-orange);
  transition: transform .25s ease, opacity .25s ease;
}
.main-nav a:hover,
.main-nav a.active {
  transform: translateY(-3px);
  border-color: rgba(255, 177, 31, .65);
  border-left-color: var(--v6-gold);
  background: linear-gradient(145deg, rgba(255, 110, 12, .18), rgba(255,255,255,.04));
  box-shadow: 0 10px 24px rgba(0,0,0,.32), inset 0 0 26px rgba(255, 97, 12, .08);
}
.main-nav a:hover::before,
.main-nav a.active::before { transform: translateX(115%) skewX(-18deg); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); opacity: 1; }
.nav-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  position: relative;
  color: #11151a;
  background: linear-gradient(145deg, var(--v6-gold), var(--v6-orange));
  border: 0;
  transform: skewX(-10deg) rotate(-1deg);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 0 14px rgba(255, 113, 14, .22);
}
.nav-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(15,18,22,.35);
  clip-path: inherit;
}
.nav-icon svg { width: 19px; height: 19px; stroke-width: 2.15; }
.nav-copy b { font-size: .9rem; letter-spacing: 1.15px; }
.nav-copy small { color: #9ba4a9; font-size: .5rem; letter-spacing: 1.3px; }
.topbar.is-compact .main-nav a { height: 40px; min-width: 92px; border-left-width: 2px; }
.topbar.is-compact .nav-icon { width: 25px; height: 25px; flex-basis: 25px; }
.topbar.is-compact .nav-copy b { font-size: .7rem; }
.top-download {
  min-width: 196px;
  height: 62px;
  padding: 0 18px;
  position: relative;
  overflow: hidden;
  color: #0a0c0e;
  border: 1px solid rgba(255, 237, 133, .72);
  background: linear-gradient(120deg, var(--v6-gold), var(--v6-orange) 58%, var(--v6-red));
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 11px 28px rgba(255, 88, 9, .24), inset 0 0 0 1px rgba(255,255,255,.22);
}
.top-download::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transition: transform .55s ease;
}
.top-download:hover::before { transform: translateX(120%) skewX(-20deg); }
.download-mark {
  border-radius: 0;
  transform: rotate(45deg);
  background: #0b0e12;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.download-mark::first-letter { transform: rotate(-45deg); }
.top-download .download-mark { line-height: 1; }
.top-download .download-mark { font-size: 0; }
.top-download .download-mark::after { content: "↓"; display: block; transform: rotate(-45deg); font-size: 1.25rem; color: #fff; }
.topbar.is-compact .top-download { height: 42px; min-width: 156px; }
.topbar.is-compact .top-download b { font-size: .78rem; }
/* ------------------------ SHARED FIRE SECTIONS ----------------------- */
.section-shell:not(.creator) {
  background-color: #11151a;
  color: #f4f5f3;
  border-top: 1px solid rgba(255, 158, 26, .18);
  border-bottom: 1px solid rgba(255, 111, 11, .14);
  isolation: isolate;
}
.news,
.tutorial,
.features {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 147, 18, .18), transparent 26%),
    radial-gradient(circle at 8% 82%, rgba(238, 47, 20, .14), transparent 29%),
    linear-gradient(135deg, #171b20 0%, #0d1116 48%, #1b1511 100%);
  color: #f5f3ee;
}
.news::before,
.tutorial::before,
.features::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 13% 90%, rgba(255, 76, 11, .34) 0 4%, transparent 29%),
    radial-gradient(ellipse at 36% 108%, rgba(255, 174, 20, .3) 0 3%, transparent 26%),
    radial-gradient(ellipse at 68% 103%, rgba(239, 51, 17, .28) 0 4%, transparent 24%),
    radial-gradient(ellipse at 91% 94%, rgba(255, 133, 14, .3) 0 3%, transparent 29%),
    repeating-linear-gradient(115deg, transparent 0 68px, rgba(255, 153, 23, .035) 69px 70px);
  filter: blur(.2px);
  animation: v6FireDrift 13s ease-in-out infinite alternate;
}
.news::after,
.tutorial::after,
.features::after {
  content: "V8";
  position: absolute;
  z-index: -1;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font: 900 clamp(18rem, 31vw, 36rem)/.7 Impact, sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 138, 19, .055);
  opacity: .9;
  pointer-events: none;
  animation: v6GhostFloat 9s ease-in-out infinite alternate;
}
.section-shell:not(.creator) .brush {
  width: 70vw;
  height: 210px;
  opacity: .38;
  filter: blur(2px);
  background:
    linear-gradient(90deg, transparent, rgba(255, 77, 10, .9) 38%, rgba(255, 202, 28, .75) 52%, rgba(255, 93, 8, .75) 67%, transparent);
  clip-path: polygon(0 38%, 8% 25%, 15% 43%, 25% 20%, 33% 46%, 44% 25%, 52% 52%, 66% 27%, 78% 47%, 89% 23%, 100% 42%, 100% 72%, 0 72%);
  animation: v6BrushMove 8s ease-in-out infinite alternate;
}
.brush-cyan,
.brush-blue,
.brush-orange { background: linear-gradient(90deg, transparent, rgba(255,69,10,.85), rgba(255,189,23,.78), transparent) !important; }
.section-heading { padding-left: 24px; }
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 2px;
  width: 7px;
  background: linear-gradient(var(--v6-gold), var(--v6-red));
  clip-path: polygon(0 0, 100% 8%, 75% 100%, 0 92%);
  box-shadow: 0 0 14px rgba(255, 103, 11, .55);
}
.section-heading.center { padding-left: 0; }
.section-heading.center::before { left: 50%; top: auto; bottom: -15px; width: 170px; height: 5px; transform: translateX(-50%); clip-path: polygon(0 50%, 8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%); }
.section-heading h2,
.creator-copy h2,
.download h2 {
  color: #f7f3ea;
  text-shadow: 4px 5px 0 rgba(0,0,0,.48), 0 0 34px rgba(255, 104, 13, .12);
}
.section-heading h2::first-letter { color: var(--v6-orange); }
.section-eyebrow { color: var(--v6-gold); }
/* ------------------------------ HERO -------------------------------- */
.hero {
  background: #0a0c10;
  min-height: 100svh;
}
.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(5,7,10,.12), rgba(5,7,10,.78)),
    radial-gradient(circle at 78% 30%, rgba(255, 136, 16, .24), transparent 27%),
    url('assets/backgrounds/hero-world.svg');
  filter: saturate(1.1) contrast(1.04);
  animation: v6HeroPan 18s ease-in-out infinite alternate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 92%, rgba(255, 67, 8, .32), transparent 21%),
    radial-gradient(circle at 45% 108%, rgba(255, 171, 17, .26), transparent 27%),
    radial-gradient(circle at 89% 96%, rgba(242, 47, 18, .31), transparent 25%),
    repeating-linear-gradient(120deg, transparent 0 95px, rgba(255,255,255,.025) 96px 97px);
  mix-blend-mode: screen;
  animation: v6FireDrift 11s ease-in-out infinite alternate-reverse;
}
.hero::after {
  height: 210px;
  background: linear-gradient(transparent, rgba(12,15,19,.88) 65%, #11151a);
}
.hero-speed { height: 10px; box-shadow: 0 0 30px currentColor; animation: v6SpeedLine 5.5s ease-in-out infinite alternate; }
.hero-speed-a { background: linear-gradient(90deg, transparent, var(--v6-gold), var(--v6-orange)); color: var(--v6-orange); }
.hero-speed-b { background: linear-gradient(90deg, transparent, var(--v6-red), var(--v6-orange)); color: var(--v6-red); animation-delay: -2.4s; }
.hero-logo { animation: v6LogoFloat 6s ease-in-out infinite; }
.hero-poster { isolation: isolate; }
.hero-poster::before {
  content: "";
  position: absolute;
  inset: 8% -8%;
  z-index: -1;
  background:
    conic-gradient(from 210deg, transparent 0 18%, rgba(255,83,10,.5) 18% 22%, transparent 22% 42%, rgba(255,189,24,.45) 42% 46%, transparent 46% 100%);
  filter: blur(10px);
  animation: v6Spin 17s linear infinite;
}
.poster-ring {
  border-color: rgba(255, 73, 10, .28);
  box-shadow: 0 0 0 15px rgba(255, 184, 24, .07), 0 0 100px rgba(255, 77, 12, .22);
  animation: v6RingPulse 5.5s ease-in-out infinite;
}
.poster-road { animation: v6RoadShift 7s ease-in-out infinite alternate; }
.poster-tag { background: linear-gradient(90deg, var(--v6-gold), var(--v6-orange)); box-shadow: 0 10px 24px rgba(255, 91, 9, .24); }
/* ------------------------------- NEWS ------------------------------- */
.news-tabs {
  background: rgba(6,8,10,.72);
  border: 1px solid rgba(255, 139, 18, .28);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,.3);
}
.news-tabs button { color: #e7e9e8; }
.news-tabs button.is-active { color: #0b0d0f; background: linear-gradient(120deg, var(--v6-gold), var(--v6-orange)); }
.news-card {
  position: relative;
  color: #f4f4ef;
  border: 1px solid rgba(255, 147, 20, .22);
  background: linear-gradient(155deg, rgba(35,39,44,.96), rgba(12,15,18,.98));
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow: 0 20px 45px rgba(0,0,0,.32);
}
.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-top: 4px solid var(--v6-orange);
  border-right: 4px solid transparent;
  opacity: .72;
}
.news-card::after {
  content: "";
  position: absolute;
  left: -35%;
  bottom: -65%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,10,.2), transparent 66%);
  transition: .45s ease;
}
.news-card:hover { transform: translateY(-10px) rotate(-.25deg); border-color: rgba(255, 183, 31, .48); }
.news-card:hover::after { left: 20%; bottom: -42%; }
.news-card img { filter: saturate(1.14) contrast(1.05); }
.news-body { position: relative; z-index: 4; background: linear-gradient(180deg, rgba(15,18,21,.2), rgba(12,15,18,.98)); }
.news-body span { color: var(--v6-gold); }
.news-body time { color: #9da4a6; }
/* ----------------------------- CREATOR ------------------------------ */
.creator {
  min-height: 720px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 139, 17, .22), transparent 25%),
    radial-gradient(circle at 20% 92%, rgba(239, 50, 18, .2), transparent 30%),
    linear-gradient(132deg, #171b20, #0b0e12 48%, #20140d);
  border-top: 1px solid rgba(255, 137, 17, .18);
  border-bottom: 1px solid rgba(255, 114, 11, .15);
  isolation: isolate;
}
.creator::before {
  inset: -12%;
  z-index: -2;
  background:
    conic-gradient(from 185deg at 27% 55%, transparent 0 22%, rgba(255,69,10,.24) 22% 26%, transparent 26% 38%, rgba(255,190,22,.15) 38% 43%, transparent 43%),
    repeating-linear-gradient(112deg, transparent 0 80px, rgba(255,255,255,.025) 81px 82px);
  animation: v6FireDrift 12s ease-in-out infinite alternate;
}
.creator::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 12%;
  width: 44vw;
  height: 44vw;
  max-width: 720px;
  max-height: 720px;
  border: 56px solid rgba(255, 86, 10, .06);
  border-radius: 50%;
  z-index: -1;
  animation: v6Spin 26s linear infinite;
}
.creator-collage {
  background:
    linear-gradient(145deg, rgba(255,84,10,.18), transparent 45%),
    linear-gradient(145deg,#242a31,#090c10);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255, 151, 19, .18);
}
.creator-collage::before { border-color: rgba(255, 65, 17, .62); animation: v6RingPulse 5s ease-in-out infinite; }
.creator-collage::after { background: linear-gradient(90deg, var(--v6-gold), var(--v6-orange), var(--v6-red)); opacity: .68; animation: v6BrushMove 6s ease-in-out infinite alternate; }
.creator-collage span { color: var(--v6-red); text-shadow: 12px 12px 0 var(--v6-gold), 0 0 55px rgba(255,85,9,.24); }
.creator-points article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,100,12,.04));
  border-color: rgba(255, 148, 19, .2);
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.creator-points article::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, var(--v6-red), var(--v6-gold)); }
.yellow-link { background: linear-gradient(110deg, var(--v6-gold), var(--v6-orange)); box-shadow: 0 12px 25px rgba(255,93,9,.2); }
/* ---------------------------- TUTORIAL ------------------------------ */
.tutorial-tabs {
  background: rgba(5,7,9,.82);
  border: 1px solid rgba(255, 145, 18, .25);
  clip-path: polygon(14px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%,0 14px);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,.32);
}
.tutorial-tabs button { padding: 15px; background: transparent; color: #e9ebea; }
.tutorial-tabs button.is-active {
  background: linear-gradient(120deg, var(--v6-gold), var(--v6-orange));
  clip-path: polygon(0 0,94% 0,100% 50%,94% 100%,0 100%,6% 50%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.tutorial-card {
  border: 1px solid rgba(255, 143, 18, .22);
  background: #0c0f12;
  clip-path: polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,18px 100%,0 calc(100% - 18px));
  box-shadow: 0 20px 42px rgba(0,0,0,.38);
}
.tutorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-top: 4px solid var(--v6-orange);
  box-shadow: inset 0 -35px 60px rgba(255,65,7,.08);
}
.tutorial-card::before {
  width: 58px;
  height: 58px;
  border: 2px solid var(--v6-gold);
  color: #111;
  background: linear-gradient(145deg, var(--v6-gold), var(--v6-orange));
  box-shadow: 0 0 0 8px rgba(0,0,0,.38), 0 0 28px rgba(255,97,9,.34);
}
.tutorial-card:hover { transform: translateY(-8px); }
.tutorial-card:hover img { transform: scale(1.075); filter: saturate(1.18) contrast(1.05); }
.tutorial-card h3 { padding: 60px 18px 16px; }
/* ----------------------------- FEATURES ----------------------------- */
.feature-stage { padding: 30px 76px; }
.feature-card {
  min-width: 68%;
  border: 1px solid rgba(255, 149, 19, .24);
  background: #090c10;
  clip-path: polygon(24px 0,100% 0,100% calc(100% - 24px),calc(100% - 24px) 100%,0 100%,0 24px);
  box-shadow: 0 28px 64px rgba(0,0,0,.48);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-top: 5px solid var(--v6-orange);
  border-left: 5px solid rgba(255, 209, 28, .45);
  clip-path: inherit;
}
.feature-card.is-active { box-shadow: 0 32px 72px rgba(0,0,0,.52), 0 0 42px rgba(255, 86, 8, .12); }
.feature-card img { filter: saturate(1.12) contrast(1.05); }
.feature-caption { padding: 110px 34px 30px; background: linear-gradient(transparent 0, rgba(5,7,9,.4) 30%, rgba(5,7,9,.96) 100%); }
.feature-caption h3 { color: var(--v6-gold); font-size: 2.35rem; text-shadow: 2px 3px 0 #000; }
.feature-arrow {
  width: 54px;
  height: 106px;
  color: #121416;
  background: linear-gradient(180deg, var(--v6-gold), var(--v6-orange));
  clip-path: polygon(0 14px,14px 0,100% 0,100% 100%,14px 100%,0 calc(100% - 14px));
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
}
.feature-arrow.right { transform: translateY(-50%) scaleX(-1); }
.feature-arrow.right::first-letter { transform: scaleX(-1); }
.feature-dots button { height: 6px; background: #4b5053; clip-path: polygon(3px 0,100% 0,calc(100% - 3px) 100%,0 100%); }
.feature-dots button.is-active { background: linear-gradient(90deg, var(--v6-red), var(--v6-gold)); box-shadow: 0 0 12px rgba(255,94,9,.5); }
/* ----------------------------- DOWNLOAD ----------------------------- */
.download {
  min-height: 610px;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 155, 18, .18), transparent 27%),
    linear-gradient(126deg, #171b20, #090c10 52%, #21130b);
  border-top: 1px solid rgba(255, 141, 18, .2);
}
.download::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 108%, rgba(255,58,8,.5), transparent 29%),
    radial-gradient(ellipse at 32% 110%, rgba(255,177,20,.38), transparent 24%),
    radial-gradient(ellipse at 58% 110%, rgba(241,45,17,.36), transparent 27%),
    radial-gradient(ellipse at 85% 110%, rgba(255,133,14,.4), transparent 28%);
  animation: v6FireDrift 8s ease-in-out infinite alternate;
}
.download::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(112deg, transparent 0 76px, rgba(255,255,255,.023) 77px 78px);
}
.download-diagonal {
  inset: -32% 52% -32% -26%;
  background:
    linear-gradient(135deg, rgba(255, 211, 28, .96), rgba(255, 111, 10, .98) 58%, rgba(231, 43, 17, .98));
  box-shadow: 0 0 80px rgba(255, 75, 8, .18);
  animation: v6DiagonalPulse 7s ease-in-out infinite alternate;
}
.download-inner > img { animation: v6LogoFloat 6s ease-in-out infinite; }
.big-download {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--v6-gold), var(--v6-orange), var(--v6-red));
  box-shadow: 0 16px 36px rgba(255,70,8,.24);
}
.big-download::before { content:""; position:absolute; inset:0; transform:translateX(-120%) skewX(-18deg); background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent); transition:.55s; }
.big-download:hover::before { transform:translateX(120%) skewX(-18deg); }
.mirror { border-color: rgba(255, 151, 19, .42); background: rgba(255,255,255,.025); }
footer {
  background:
    linear-gradient(90deg, rgba(255,81,10,.08), transparent 22%, transparent 78%, rgba(255,165,20,.05)),
    #05070a;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--v6-red), var(--v6-gold), var(--v6-red), transparent) 1;
}
/* ------------------- DRIVER: ONLY ACTIVE THUMB BORDER ---------------- */
.driver-thumb.is-active {
  z-index: 3;
  transform: translateX(-5px) scale(1.035);
  border: 4px solid #fff;
  outline: 3px solid var(--driver-accent);
  outline-offset: -7px;
  box-shadow:
    0 0 0 2px #07090b,
    0 0 0 6px var(--driver-accent),
    0 0 26px color-mix(in srgb, var(--driver-accent) 75%, transparent),
    0 12px 24px rgba(0,0,0,.48);
}
.driver-thumb.is-active::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(var(--driver-accent),var(--driver-accent)) left top/16px 4px no-repeat,
    linear-gradient(var(--driver-accent),var(--driver-accent)) left top/4px 16px no-repeat,
    linear-gradient(var(--driver-accent),var(--driver-accent)) right top/16px 4px no-repeat,
    linear-gradient(var(--driver-accent),var(--driver-accent)) right top/4px 16px no-repeat,
    linear-gradient(var(--driver-accent),var(--driver-accent)) left bottom/16px 4px no-repeat,
    linear-gradient(var(--driver-accent),var(--driver-accent)) left bottom/4px 16px no-repeat,
    linear-gradient(var(--driver-accent),var(--driver-accent)) right bottom/16px 4px no-repeat,
    linear-gradient(var(--driver-accent),var(--driver-accent)) right bottom/4px 16px no-repeat;
  filter: drop-shadow(0 0 5px var(--driver-accent));
}
.driver-thumb.is-active::after {
  content: "SELECTED";
  position: absolute;
  left: 50%;
  bottom: -2px;
  z-index: 5;
  transform: translateX(-50%);
  min-width: 74%;
  padding: 2px 5px;
  text-align: center;
  color: #080a0c;
  background: var(--driver-accent);
  font: 900 .48rem/1 Arial, sans-serif;
  letter-spacing: .8px;
  pointer-events: none;
}
/* ---------------------------- ANIMATIONS ----------------------------- */
@keyframes v6FireDrift {
  0% { transform: translate3d(-1.5%, 1.5%, 0) scale(1.02); filter: saturate(.95); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.07); filter: saturate(1.2); }
}
@keyframes v6GhostFloat { from { transform: translateY(-52%) rotate(-9deg); } to { transform: translateY(-47%) rotate(-6deg); } }
@keyframes v6BrushMove { from { transform: translateX(-7%) rotate(-10deg) scaleX(.96); } to { transform: translateX(8%) rotate(-7deg) scaleX(1.06); } }
@keyframes v6HeroPan { from { transform: scale(1.02) translateX(-1%); } to { transform: scale(1.075) translateX(1.5%); } }
@keyframes v6SpeedLine { from { transform: rotate(-31deg) translateX(-8%); opacity: .55; } to { transform: rotate(-31deg) translateX(7%); opacity: 1; } }
@keyframes v6LogoFloat { 0%,100% { transform: translateY(0) rotate(-.2deg); } 50% { transform: translateY(-10px) rotate(.35deg); } }
@keyframes v6RingPulse { 0%,100% { transform: scale(.96); opacity: .66; } 50% { transform: scale(1.045); opacity: 1; } }
@keyframes v6RoadShift { from { transform: rotate(29deg) translateY(-12px); } to { transform: rotate(29deg) translateY(16px); } }
@keyframes v6Spin { to { transform: rotate(360deg); } }
@keyframes v6DiagonalPulse { from { transform: skewX(-12deg) translateX(-1.5%); } to { transform: skewX(-12deg) translateX(2%); } }
/* ---------------------------- RESPONSIVE ----------------------------- */
@media (max-width: 1320px) {
  .main-nav a { min-width: 98px; padding: 0 9px; }
  .nav-copy small { display: none; }
  .top-download { min-width: 170px; }
}
/* Generated ember particles for all non-character sections */
.v6-embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.v6-embers i {
  --x: 50%;
  --delay: 0s;
  --duration: 8s;
  --size: 4px;
  position: absolute;
  left: var(--x);
  bottom: -18px;
  width: var(--size);
  height: calc(var(--size) * 1.9);
  border-radius: 50% 50% 35% 35%;
  background: linear-gradient(#fff1a0, var(--v6-gold) 28%, var(--v6-orange) 62%, transparent);
  box-shadow: 0 0 8px rgba(255, 114, 13, .75);
  opacity: 0;
  animation: v6EmberRise var(--duration) linear var(--delay) infinite;
}
@keyframes v6EmberRise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg) scale(.55); }
  12% { opacity: .8; }
  65% { opacity: .42; }
  100% { opacity: 0; transform: translate3d(42px, -74vh, 0) rotate(290deg) scale(.12); }
}
/* ======================================================================
   V7 — FEATURE CINEMA CAROUSEL + DOWNLOAD MUD TIRE TRAIL
   ====================================================================== */

/* ------------------------- FEATURE BACKGROUND FX ----------------------- */
.features {
  overflow: hidden;
  isolation: isolate;
}
.features .section-heading,
.features .feature-stage,
.features .feature-dots {
  position: relative;
  z-index: 4;
}
.feature-impact {
  position: absolute;
  right: -3vw;
  top: 7%;
  width: min(620px, 44vw);
  aspect-ratio: 1.2;
  z-index: 1;
  pointer-events: none;
  opacity: .42;
  filter: saturate(.9);
}
.impact-flash {
  position: absolute;
  inset: 15% 5% 8% 12%;
  background:
    radial-gradient(circle at 48% 53%, rgba(255,246,190,.58) 0 2%, rgba(255,185,32,.34) 5%, rgba(255,73,7,.2) 16%, transparent 43%),
    conic-gradient(from 12deg at 48% 53%, transparent 0 7%, rgba(255,184,25,.18) 7% 9%, transparent 9% 21%, rgba(255,76,8,.2) 21% 23%, transparent 23% 48%, rgba(255,201,45,.12) 48% 50%, transparent 50% 100%);
  clip-path: polygon(48% 0, 57% 34%, 83% 10%, 66% 42%, 100% 45%, 67% 55%, 91% 89%, 58% 66%, 48% 100%, 42% 66%, 8% 91%, 31% 57%, 0 48%, 33% 42%, 15% 10%, 41% 34%);
  animation: v7ImpactPulse 5.8s ease-in-out infinite;
}
.impact-ring {
  position: absolute;
  left: 48%;
  top: 53%;
  width: 170px;
  aspect-ratio: 1;
  border: 2px solid rgba(255,134,19,.24);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: v7ImpactRing 6s ease-out infinite;
}
.impact-ring.ring-two { animation-delay: -3s; border-color: rgba(255,214,78,.14); }
.impact-wheel {
  position: absolute;
  right: 7%;
  top: 12%;
  width: 122px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 18px solid rgba(9,12,15,.75);
  box-shadow:
    inset 0 0 0 3px rgba(255,151,24,.15),
    inset 0 0 0 11px rgba(40,43,45,.75),
    0 18px 26px rgba(0,0,0,.28);
  animation: v7WheelThrow 7.5s ease-in-out infinite;
}
.impact-wheel::before,
.impact-wheel::after,
.impact-wheel i::before,
.impact-wheel i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 68%;
  background: rgba(180,184,184,.42);
  transform: translate(-50%,-50%) rotate(0deg);
  clip-path: polygon(34% 0,66% 0,100% 44%,66% 100%,34% 100%,0 44%);
}
.impact-wheel::after { transform: translate(-50%,-50%) rotate(90deg); }
.impact-wheel i::before { transform: translate(-50%,-50%) rotate(45deg); }
.impact-wheel i::after { transform: translate(-50%,-50%) rotate(-45deg); }
.impact-shard {
  position: absolute;
  width: 44px;
  height: 12px;
  background: linear-gradient(90deg, rgba(255,202,50,.08), rgba(255,119,12,.46), rgba(55,35,25,.2));
  clip-path: polygon(0 45%, 86% 0, 100% 52%, 17% 100%);
  animation: v7ShardFloat 6.5s ease-in-out infinite alternate;
}
.shard-one { left: 8%; top: 22%; transform: rotate(21deg); }
.shard-two { left: 18%; bottom: 11%; width: 67px; animation-delay: -2.2s; transform: rotate(-28deg); }
.shard-three { right: 22%; bottom: 4%; width: 31px; animation-delay: -4s; transform: rotate(42deg); }
.shard-four { right: 2%; top: 47%; width: 72px; animation-delay: -1.3s; transform: rotate(-9deg); }
.shard-five { left: 43%; top: 7%; width: 26px; animation-delay: -5.2s; transform: rotate(78deg); }
/* ------------------------- FEATURE CAROUSEL ---------------------------- */
.feature-stage {
  position: relative;
  width: min(1540px, 100vw);
  margin: 28px auto 0;
  padding: 34px 96px 42px;
  overflow: visible;
  perspective: 1400px;
}
.feature-viewport {
  position: relative;
  overflow: hidden;
  padding: 30px 0 44px;
  margin: -30px 0 -44px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5.5%, #000 94.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5.5%, #000 94.5%, transparent 100%);
}
.feature-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  will-change: transform;
  transition: transform .72s cubic-bezier(.16,.82,.18,1);
}
.feature-card {
  flex: 0 0 clamp(690px, 63vw, 980px);
  min-width: 0;
  position: relative;
  opacity: .36;
  transform: scale(.78) rotateY(4deg);
  transform-origin: center;
  filter: saturate(.58) brightness(.68);
  cursor: pointer;
  transition:
    opacity .55s ease,
    transform .72s cubic-bezier(.16,.82,.18,1),
    filter .55s ease,
    box-shadow .55s ease;
}
.feature-card.is-before { transform: scale(.82) rotateY(5deg) translateX(12px); }
.feature-card.is-after { transform: scale(.82) rotateY(-5deg) translateX(-12px); }
.feature-card.is-active {
  z-index: 3;
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  filter: saturate(1.12) brightness(1);
  cursor: default;
  box-shadow:
    0 36px 80px rgba(0,0,0,.58),
    0 0 0 1px rgba(255,184,28,.16),
    0 0 58px rgba(255,90,9,.14);
}
.feature-media { position: relative; overflow: hidden; }
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.12) 42%, transparent 50%),
    linear-gradient(180deg, transparent 58%, rgba(3,5,7,.72));
  transform: translateX(-55%);
  transition: transform .75s ease;
}
.feature-card.is-active .feature-media::after { transform: translateX(0); }
.feature-card img { aspect-ratio: 16/8.65; transition: transform 1.1s ease; }
.feature-card.is-active img { transform: scale(1.025); }
.feature-number {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 22px;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: 1.35rem;
  letter-spacing: 2px;
  color: #090b0d;
  background: linear-gradient(110deg,var(--v6-gold),var(--v6-orange));
  padding: 7px 13px 6px;
  clip-path: polygon(9px 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%,0 9px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.feature-caption { padding: 118px 38px 34px; }
.feature-caption h3 { font-size: clamp(1.8rem,2.7vw,2.65rem); }
.feature-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 76px;
  height: 86px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  color: #121416;
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}
.feature-arrow.left { left: 9px; }
.feature-arrow.right { right: 9px; transform: translateY(-50%); }
.feature-arrow .arrow-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,243,151,.96), var(--v6-gold) 34%, var(--v6-orange) 74%, #d94212);
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px);
  box-shadow: 0 18px 34px rgba(0,0,0,.44), 0 0 28px rgba(255,104,9,.25);
}
.feature-arrow .arrow-shell::before {
  content: "";
  position: absolute;
  inset: 5px;
  clip-path: inherit;
  border: 1px solid rgba(0,0,0,.38);
  background: linear-gradient(145deg,rgba(255,255,255,.18),transparent 42%);
}
.feature-arrow svg {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  filter: drop-shadow(1px 2px 0 rgba(255,255,255,.25));
}
.feature-arrow:hover:not(:disabled) { transform: translateY(-50%) scale(1.08); filter: brightness(1.09); }
.feature-arrow:active:not(:disabled) { transform: translateY(-50%) scale(.96); }
.feature-arrow:disabled {
  color: #697076;
  cursor: not-allowed;
  opacity: .62;
  filter: grayscale(.8) saturate(.15);
}
.feature-arrow:disabled .arrow-shell {
  background: linear-gradient(145deg,#30353a,#15191d 72%);
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
}
.feature-arrow:disabled .arrow-shell::after {
  content: "END";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  color: #92999e;
  font: 900 .44rem/1 Arial,sans-serif;
  letter-spacing: 1.2px;
}
.feature-dots { margin-top: 8px; }
/* -------------------------- DOWNLOAD TIRE TRAIL ------------------------ */
.download-tire-trail {
  position: absolute;
  z-index: 2;
  left: 16%;
  bottom: -250px;
  width: 210px;
  height: 920px;
  transform: rotate(-24deg);
  transform-origin: 50% 100%;
  pointer-events: none;
  opacity: .58;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 5px 3px rgba(30,13,5,.2));
  animation: v7TrailSway 8s ease-in-out infinite alternate;
}
.tire-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  opacity: .82;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(78,38,13,.54) 9% 15%, transparent 16% 26%, rgba(87,41,13,.62) 27% 38%, transparent 39% 61%, rgba(77,34,10,.58) 62% 73%, transparent 74% 84%, rgba(73,31,8,.5) 85% 92%, transparent 93%),
    repeating-linear-gradient(180deg,
      rgba(71,31,9,.86) 0 14px,
      transparent 14px 25px,
      rgba(84,39,10,.8) 25px 38px,
      transparent 38px 50px);
  -webkit-mask-image: linear-gradient(180deg,transparent 0,#000 10%,#000 83%,transparent 100%);
  mask-image: linear-gradient(180deg,transparent 0,#000 10%,#000 83%,transparent 100%);
  animation: v7TreadMove 5.4s linear infinite;
}
.tire-line::before,
.tire-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(165deg,transparent 0 22px,rgba(38,17,6,.65) 23px 31px,transparent 32px 55px);
  mix-blend-mode: multiply;
}
.tire-line::after { transform: scaleX(-1); opacity: .72; }
.tire-line-a { left: 5px; }
.tire-line-b { right: 5px; }
.mud-splat {
  position: absolute;
  width: 58px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 42%,rgba(91,43,12,.65) 0 6%,transparent 7%),
    radial-gradient(circle at 71% 21%,rgba(84,36,8,.56) 0 8%,transparent 9%),
    radial-gradient(ellipse,rgba(78,34,9,.66),rgba(65,27,6,.2) 64%,transparent 68%);
  filter: blur(.2px);
}
.mud-one { left: 15px; bottom: 318px; transform: rotate(18deg) scale(1.25); }
.mud-two { right: -10px; bottom: 512px; transform: rotate(-23deg) scale(.8); }
.mud-three { left: 74px; bottom: 692px; transform: rotate(41deg) scale(.56); }
.download-inner { z-index: 4; }
.download-diagonal { z-index: 1; }
.download::after { z-index: 0; }
@keyframes v7ImpactPulse {
  0%,100% { transform: scale(.94) rotate(-2deg); opacity: .55; }
  48% { transform: scale(1.045) rotate(1deg); opacity: .88; }
}
@keyframes v7ImpactRing {
  0% { transform: translate(-50%,-50%) scale(.18); opacity: .48; }
  70%,100% { transform: translate(-50%,-50%) scale(2.8); opacity: 0; }
}
@keyframes v7WheelThrow {
  0%,100% { transform: translate3d(0,8px,0) rotate(-14deg); }
  50% { transform: translate3d(-22px,-17px,0) rotate(24deg); }
}
@keyframes v7ShardFloat {
  from { margin: 0; opacity: .2; }
  to { margin: -14px 0 0 18px; opacity: .62; }
}
@keyframes v7TrailSway {
  from { transform: rotate(-24deg) translate3d(0,0,0); }
  to { transform: rotate(-25.5deg) translate3d(-8px,-12px,0); }
}
@keyframes v7TreadMove {
  to { background-position: 0 -100px, 0 -100px; }
}
/* ======================================================================
   V8 — WARM CHARACTER-SCENE WORLD
   Rebuilds every non-driver background around the driver showcase's
   layered paper + painted color-world language. Driver presentation stays
   intact; only the four selector thumbnails become square with an orange
   selection frame.
   ====================================================================== */

:root {
  --v8-paper: #d4d0c5;
  --v8-paper-soft: #ded9ce;
  --v8-paper-deep: #bbb4a7;
  --v8-ink: #111417;
  --v8-orange: #ff7714;
  --v8-orange-hot: #ff4a10;
  --v8-gold: #ffc91c;
  --v8-red: #e82f16;
  --v8-brown: #5f2a14;
}
body {
  background: var(--v8-paper-deep);
  color: var(--v8-ink);
}
/* Warm graphite header; existing controls and compact behavior remain. */
.topbar {
  background:
    linear-gradient(90deg, rgba(255,117,20,.2), transparent 25%, rgba(255,190,25,.08) 82%, transparent),
    linear-gradient(180deg, rgba(45,33,26,.98), rgba(22,20,19,.97));
  border-bottom-color: rgba(255,178,27,.28);
  box-shadow: 0 10px 28px rgba(83,42,18,.24);
}
.topbar.is-compact {
  background: rgba(37,29,24,.96);
  box-shadow: 0 8px 22px rgba(77,37,14,.3);
}
.main-nav a {
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,113,16,.035));
  border-color: rgba(255,171,26,.18);
}
.nav-icon { background: #30241d; border-color: rgba(255,187,30,.22); }
.nav-copy small { color: #b6a99f; }
/* One reusable animated scene layer, added by script to every section except Drivers. */
.hero,
.news,
.creator,
.tutorial,
.features,
.download {
  isolation: isolate;
  background: var(--v8-paper);
}
.v8-scene-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.scene-panel {
  position: absolute;
  z-index: 1;
  top: -12%;
  right: -8%;
  bottom: -13%;
  left: 47%;
  overflow: hidden;
  clip-path: polygon(23% 0,100% 0,100% 100%,0 100%,13% 77%,1% 59%,17% 38%,8% 18%);
  background:
    linear-gradient(132deg, rgba(255,214,61,.25), transparent 33%),
    radial-gradient(circle at 72% 30%, rgba(255,225,112,.44), transparent 22%),
    radial-gradient(circle at 38% 74%, rgba(224,40,13,.4), transparent 30%),
    linear-gradient(128deg, var(--v8-gold), var(--v8-orange) 45%, var(--v8-orange-hot) 76%, var(--v8-red));
  box-shadow: -30px 0 80px rgba(157,60,12,.14);
  animation: v8ColorWorld 13s ease-in-out infinite alternate;
}
.scene-panel::before {
  content: "";
  position: absolute;
  inset: -7%;
  opacity: .25;
  background:
    linear-gradient(90deg, rgba(75,28,10,.35), transparent 55%),
    url('assets/backgrounds/hero-world.svg') center / cover no-repeat;
  filter: grayscale(1) contrast(1.15) sepia(.35);
  transform: scale(1.08) translateX(2%);
  animation: v8BackdropDrift 18s ease-in-out infinite alternate;
}
.scene-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  background:
    radial-gradient(circle at 22% 34%, rgba(78,35,16,.23) 0 1.2px, transparent 1.8px),
    linear-gradient(111deg, transparent 47%, rgba(255,255,255,.48) 47.25% 47.7%, transparent 48%),
    repeating-linear-gradient(113deg, transparent 0 74px, rgba(80,33,13,.045) 75px 77px);
  background-size: 11px 11px, 100% 100%, auto;
  animation: v8TextureSweep 10s ease-in-out infinite alternate;
}
.scene-ghost {
  position: absolute;
  left: 2.5vw;
  top: 14%;
  z-index: 0;
  max-width: 70vw;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: clamp(8rem,18vw,21rem);
  line-height: .74;
  letter-spacing: 4px;
  white-space: nowrap;
  color: rgba(48,31,21,.045);
  transform: rotate(-2deg);
  animation: v8GhostMove 14s ease-in-out infinite alternate;
}
.scene-halftone {
  position: absolute;
  z-index: 2;
  inset: auto auto -10% -5%;
  width: 52vw;
  height: 58%;
  opacity: .28;
  background-image: radial-gradient(circle, rgba(85,39,18,.32) 0 1.1px, transparent 1.6px);
  background-size: 10px 10px;
  -webkit-mask-image: linear-gradient(15deg,#000,transparent 72%);
  mask-image: linear-gradient(15deg,#000,transparent 72%);
  animation: v8HalftoneFloat 15s ease-in-out infinite alternate;
}
.scene-slash {
  position: absolute;
  z-index: 3;
  height: 8px;
  width: 52vw;
  right: -10vw;
  transform: rotate(-31deg);
  transform-origin: center;
  box-shadow: 0 0 20px currentColor;
  animation: v8SlashSweep 8s ease-in-out infinite alternate;
}
.scene-slash-a { top: 18%; color: var(--v8-gold); background: currentColor; }
.scene-slash-b { top: 23%; height: 3px; color: rgba(255,255,255,.82); background: currentColor; animation-delay: -2.4s; }
.scene-slash-c { bottom: 13%; height: 11px; color: var(--v8-orange-hot); background: currentColor; animation-delay: -4.7s; }
/* Slightly different composition per section — same family, never one repeated background. */
.news .scene-panel { left: 55%; top: -18%; bottom: -20%; transform: rotate(1.5deg); }
.news .scene-ghost { top: 8%; left: -1vw; }
.creator .scene-panel { left: -10%; right: 54%; clip-path: polygon(0 0,83% 0,100% 18%,88% 41%,100% 63%,82% 100%,0 100%); }
.creator .scene-ghost { left: 45%; top: 10%; }
.creator .scene-halftone { left: auto; right: -7%; transform: scaleX(-1); }
.tutorial .scene-panel { left: 61%; right: -13%; top: -21%; }
.tutorial .scene-ghost { top: 6%; left: 1vw; }
.features .scene-panel { left: -8%; right: 57%; clip-path: polygon(0 0,83% 0,100% 20%,88% 42%,100% 67%,77% 100%,0 100%); opacity: .84; }
.features .scene-ghost { left: 42%; top: 7%; }
.features .scene-halftone { left: auto; right: -7%; transform: scaleX(-1); }
.download .scene-panel { left: 50%; right: -10%; top: -21%; bottom: -24%; }
.download .scene-ghost { left: 2vw; top: 10%; }
/* Section paper fields and readable dark typography. */
.hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.68), transparent 29%),
    linear-gradient(104deg, var(--v8-paper-soft), #cbc5b8 56%, #b9b1a4);
}
.hero-bg {
  z-index: 0;
  opacity: .19;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.55), transparent 53%),
    url('assets/backgrounds/hero-world.svg');
  filter: grayscale(1) sepia(.3) contrast(.9);
}
.hero::before {
  z-index: 1;
  opacity: .58;
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle at 10% 96%, rgba(255,74,10,.18), transparent 20%),
    radial-gradient(circle at 46% 108%, rgba(255,184,22,.2), transparent 27%),
    repeating-linear-gradient(120deg, transparent 0 95px, rgba(73,35,18,.025) 96px 97px);
}
.hero::after { z-index: 1; height: 170px; background: linear-gradient(transparent, rgba(194,188,176,.84), var(--v8-paper)); }
.hero-inner,.scroll-cue { z-index: 4; }
.kicker { color: #bd3e10; }
.hero-lead { color: #3f3d39; }
.action-dark { background: rgba(38,31,27,.9); color: #fff; border-color: rgba(255,121,16,.35); }
.poster-title { color: #191817; text-shadow: 7px 8px 0 rgba(255,112,15,.62), -2px -2px 0 rgba(255,255,255,.85); }
.poster-ring { border-color: rgba(255,77,13,.34); box-shadow: 0 0 0 15px rgba(255,196,30,.13),0 0 75px rgba(198,67,11,.15); }
.poster-road { opacity: .58; }
.scroll-cue { color: #59483c; }
.news,
.tutorial,
.features {
  background:
    radial-gradient(circle at 18% 17%, rgba(255,255,255,.65), transparent 25%),
    linear-gradient(180deg, #ddd9cf, #c8c2b6);
  color: var(--v8-ink);
}
.news::before,
.tutorial::before,
.features::before {
  opacity: .42;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(59,38,25,.12) 0 1px, transparent 1.5px),
    linear-gradient(rgba(68,44,26,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(68,44,26,.035) 1px,transparent 1px);
  background-size: 12px 12px, 55px 55px, 55px 55px;
}
.section-heading,.news-tabs,.news-grid,.tutorial-tabs,.tutorial-grid,.feature-stage,.feature-dots { position: relative; z-index: 4; }
.section-heading h2,
.news .section-heading h2,
.tutorial .section-heading h2,
.features .section-heading h2 {
  color: #171513;
  text-shadow: 4px 5px 0 rgba(255,129,15,.2);
}
.section-eyebrow { color: #c54510; }
.brush { z-index: 2; opacity: .48; filter: blur(.2px); }
.creator {
  min-height: 720px;
  color: var(--v8-ink);
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.55), transparent 27%),
    linear-gradient(132deg, #c9c4ba, #ded9cf 55%, #bcb5a8);
  border-color: rgba(146,65,19,.18);
}
.creator::before {
  z-index: 1;
  opacity: .38;
  background:
    repeating-linear-gradient(112deg, transparent 0 80px, rgba(78,39,20,.04) 81px 82px);
}
.creator::after { border-color: rgba(255,88,11,.09); z-index: 1; }
.creator-art,.creator-copy { z-index: 4; }
.creator-copy h2 { color: #171513; text-shadow: 4px 5px 0 rgba(255,127,12,.22); }
.creator-copy .section-eyebrow { color: #bd3e10; }
.creator-copy > p { color: #4e4943; }
.creator-points article { color: #1a1715; background: rgba(255,255,255,.34); border-color: rgba(117,55,20,.2); box-shadow: 0 12px 26px rgba(87,50,25,.08); }
.creator-collage { box-shadow: 0 24px 55px rgba(85,42,18,.22), inset 0 0 0 1px rgba(255,151,19,.25); }
.download {
  min-height: 610px;
  color: var(--v8-ink);
  background:
    radial-gradient(circle at 77% 23%, rgba(255,255,255,.6), transparent 24%),
    linear-gradient(126deg, #d9d4ca, #c8c1b5 56%, #b7afa2);
  border-top-color: rgba(153,67,18,.22);
}
.download::before {
  z-index: 1;
  opacity: .26;
  background:
    radial-gradient(ellipse at 8% 108%, rgba(255,58,8,.3), transparent 29%),
    radial-gradient(ellipse at 38% 110%, rgba(255,177,20,.28), transparent 26%),
    radial-gradient(ellipse at 80% 110%, rgba(241,45,17,.24), transparent 27%);
  mix-blend-mode: multiply;
}
.download::after { z-index: 1; background: repeating-linear-gradient(112deg, transparent 0 76px, rgba(82,44,24,.03) 77px 78px); }
.download-diagonal { z-index: 2; opacity: .9; }
.download-inner { z-index: 5; }
.download h2 { color: #171513; text-shadow: 4px 5px 0 rgba(255,128,12,.23); }
.download-inner p:not(.section-eyebrow) { color: #4d4842; }
.mirror { color: #2d251f; border-color: rgba(112,52,20,.36); background: rgba(255,255,255,.34); }
.download-tire-trail { z-index: 4; mix-blend-mode: multiply; opacity: .52; }
footer {
  color: #4b423b;
  background:
    linear-gradient(118deg, rgba(255,151,18,.3), transparent 27%, transparent 72%, rgba(228,55,17,.18)),
    linear-gradient(180deg, #bbb3a5, #a9a092);
  border-image: linear-gradient(90deg, transparent, var(--v8-red), var(--v8-gold), var(--v8-orange), transparent) 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
footer span { color: #2d2723; font-weight: 800; }
footer img { filter: drop-shadow(0 8px 8px rgba(88,40,16,.2)); }
/* Existing cards remain dark game-media objects, but are warmed and lifted from the paper. */
.news-card,.tutorial-card,.feature-card {
  box-shadow: 0 20px 42px rgba(81,45,24,.2), 0 0 0 1px rgba(255,127,15,.08);
}
.news-card { background: linear-gradient(155deg, #36312d, #171615); }
.news-body { background: linear-gradient(180deg, rgba(31,27,24,.22), rgba(20,18,17,.98)); }
.tutorial-card { background: #211d1a; }
.feature-card { background: #181614; }
.feature-arrow:disabled { opacity: .53; }
/* Ambient fire ash: coordinated, sparse, and readable over light paper. */
.v6-embers {
  z-index: 3;
  mix-blend-mode: normal;
  opacity: .92;
}
.v6-embers i {
  --drift: 20px;
  --sway: 8px;
  --alpha: .55;
  width: var(--size);
  height: calc(var(--size) * 1.55);
  border-radius: 60% 40% 55% 45%;
  opacity: 0;
  background: linear-gradient(180deg, #fff2a1, var(--v8-gold) 28%, var(--v8-orange) 66%, rgba(177,45,9,.15));
  box-shadow: 0 0 6px rgba(255,107,11,.46);
  filter: blur(.05px);
  animation-name: v8AshRise;
}
.v6-embers i.spark { height: var(--size); border-radius: 50%; box-shadow: 0 0 9px rgba(255,105,8,.62); }
.v6-embers i.ash {
  width: calc(var(--size) * .82);
  height: calc(var(--size) * .82);
  background: rgba(73,61,53,.58);
  box-shadow: 0 0 3px rgba(255,147,22,.18);
  filter: blur(.35px);
}
.v6-embers i:nth-child(4n+1) { transform-origin: 30% 70%; }
.v6-embers i:nth-child(5n+2) { filter: blur(.7px); }
/* Driver showcase is untouched except for the requested selector squares. */
.driver-selector {
  width: 92px;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  grid-template-rows: 42px auto 42px;
}
.driver-thumbs {
  grid-template-rows: repeat(4,92px);
  gap: 8px;
}
.driver-thumb {
  width: 92px;
  height: 92px;
  aspect-ratio: 1;
  border: 3px solid rgba(255,255,255,.78);
  box-shadow: 0 4px 13px rgba(0,0,0,.24);
}
.driver-thumb.is-active {
  z-index: 3;
  transform: none;
  border: 4px solid var(--v8-orange);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(8,10,12,.78), 0 0 18px rgba(255,119,20,.58), 0 8px 18px rgba(0,0,0,.34);
}
.driver-thumb.is-active::before,
.driver-thumb.is-active::after { content: none; display: none; }
.driver-thumb.is-active img {
  transform: scale(1.55);
  filter: saturate(.78) contrast(1.08);
}
.driver-thumb-index { display: none; }
@keyframes v8ColorWorld {
  from { transform: translate3d(-1.2%,0,0) scale(1.015); filter: saturate(.95); }
  to { transform: translate3d(1.5%,.8%,0) scale(1.045); filter: saturate(1.08); }
}
@keyframes v8BackdropDrift {
  from { transform: scale(1.08) translateX(-1.5%); }
  to { transform: scale(1.14) translateX(3.5%); }
}
@keyframes v8TextureSweep {
  from { transform: translate3d(-1%,-.5%,0); }
  to { transform: translate3d(2%,1%,0); }
}
@keyframes v8GhostMove {
  from { transform: translateX(-1.4%) rotate(-2deg); }
  to { transform: translateX(1.2%) rotate(-1.2deg); }
}
@keyframes v8HalftoneFloat {
  from { transform: translate3d(-1%,1%,0) rotate(-2deg); }
  to { transform: translate3d(2%,-1%,0) rotate(1deg); }
}
@keyframes v8SlashSweep {
  from { transform: translate3d(-1.5%,0,0) rotate(-31deg) scaleX(.97); opacity: .48; }
  to { transform: translate3d(2%,0,0) rotate(-31deg) scaleX(1.04); opacity: .9; }
}
@keyframes v8AshRise {
  0% { opacity: 0; transform: translate3d(0,20px,0) rotate(0deg) scale(.55); }
  12% { opacity: var(--alpha); }
  58% { opacity: calc(var(--alpha) * .72); transform: translate3d(var(--sway),-44vh,0) rotate(165deg) scale(.82); }
  100% { opacity: 0; transform: translate3d(var(--drift),-88vh,0) rotate(330deg) scale(.18); }
}
/* ========================================================================== 
   V9 — GPU cinematic section navigation and performance layer
   Keeps every visual effect, but only the visible scene spends animation time.
   ========================================================================== */

html.scene-engine-ready {
  scroll-behavior: auto;
  overscroll-behavior-y: none;
}
body.scene-engine-ready {
  overscroll-behavior-y: none;
}
.scene-section {
  position: relative;
  scroll-margin-top: 58px;
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* Suspend all continuous scene animation off-screen. Nothing is deleted. */
body.scene-engine-ready .scene-section:not(.scene-active) *,
body.scene-engine-ready .scene-section:not(.scene-active)::before,
body.scene-engine-ready .scene-section:not(.scene-active)::after {
  animation-play-state: paused !important;
}
body.scene-engine-ready .scene-section.scene-active *,
body.scene-engine-ready .scene-section.scene-active::before,
body.scene-engine-ready .scene-section.scene-active::after {
  animation-play-state: running;
}
/* Only active visual layers are promoted to the GPU. */
body.scene-engine-ready .scene-section.scene-active .v8-scene-decor,
body.scene-engine-ready .scene-section.scene-active .scene-panel,
body.scene-engine-ready .scene-section.scene-active .scene-ghost,
body.scene-engine-ready .scene-section.scene-active .scene-halftone,
body.scene-engine-ready .scene-section.scene-active .scene-slash,
body.scene-engine-ready .scene-section.scene-active .v6-embers,
body.scene-engine-ready .scene-section.scene-active .hero-bg,
body.scene-engine-ready .scene-section.scene-active .hero-speed,
body.scene-engine-ready .scene-section.scene-active .driver-color-world,
body.scene-engine-ready .scene-section.scene-active .driver-art-wrap,
body.scene-engine-ready .scene-section.scene-active .feature-impact,
body.scene-engine-ready .scene-section.scene-active .download-tire-trail {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
body.scene-engine-ready .scene-section:not(.scene-active) .v8-scene-decor,
body.scene-engine-ready .scene-section:not(.scene-active) .scene-panel,
body.scene-engine-ready .scene-section:not(.scene-active) .scene-ghost,
body.scene-engine-ready .scene-section:not(.scene-active) .scene-halftone,
body.scene-engine-ready .scene-section:not(.scene-active) .scene-slash,
body.scene-engine-ready .scene-section:not(.scene-active) .v6-embers,
body.scene-engine-ready .scene-section:not(.scene-active) .hero-bg,
body.scene-engine-ready .scene-section:not(.scene-active) .hero-speed,
body.scene-engine-ready .scene-section:not(.scene-active) .driver-color-world,
body.scene-engine-ready .scene-section:not(.scene-active) .driver-art-wrap,
body.scene-engine-ready .scene-section:not(.scene-active) .feature-impact,
body.scene-engine-ready .scene-section:not(.scene-active) .download-tire-trail {
  will-change: auto;
}
/* Every scene is reset, then revealed only after the camera lands on it. */
body.scene-engine-ready .scene-section [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(.985);
  transition-property: opacity, transform;
  transition-duration: .78s;
  transition-timing-function: cubic-bezier(.18,.82,.2,1);
}
body.scene-engine-ready .scene-section.scene-active [data-reveal].revealed {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}
/* Scene-specific cinematic entrances. Continuous original animation resumes after it. */
body.scene-engine-ready .scene-section.scene-entering > .v8-scene-decor {
  animation: v9SceneDecorIn .92s cubic-bezier(.16,.84,.2,1) both;
}
body.scene-engine-ready .scene-section.scene-entering > .v6-embers {
  animation: v9AshFieldIn 1.05s .08s cubic-bezier(.16,.84,.2,1) both;
}
body.scene-engine-ready .hero.scene-entering .hero-bg {
  animation: v9BackdropIn 1.05s cubic-bezier(.16,.84,.2,1) both, v6HeroPan 18s 1.05s ease-in-out infinite alternate;
}
body.scene-engine-ready .hero.scene-entering .hero-speed-a {
  animation: v9SpeedStrikeIn .8s .08s cubic-bezier(.12,.88,.2,1) both, v6SpeedLine 5.5s .88s ease-in-out infinite alternate;
}
body.scene-engine-ready .hero.scene-entering .hero-speed-b {
  animation: v9SpeedStrikeIn .8s .18s cubic-bezier(.12,.88,.2,1) both, v6SpeedLine 5.5s .98s ease-in-out infinite alternate;
}
body.scene-engine-ready .scene-section.scene-entering .brush {
  animation: v9BrushIn .9s .12s cubic-bezier(.16,.84,.2,1) both;
}
body.scene-engine-ready .drivers.scene-entering .driver-paper,
body.scene-engine-ready .drivers.scene-entering .driver-city {
  animation: v9DriverFieldIn .85s cubic-bezier(.16,.84,.2,1) both;
}
body.scene-engine-ready .features.scene-entering .feature-impact {
  animation: v9ImpactFieldIn .95s .12s cubic-bezier(.16,.84,.2,1) both;
}
body.scene-engine-ready .download.scene-entering .download-diagonal {
  animation: v9DownloadSlashIn .9s cubic-bezier(.12,.88,.2,1) both;
}
body.scene-engine-ready .download.scene-entering .download-tire-trail {
  animation: v9TireTrailIn 1.08s .12s cubic-bezier(.16,.84,.2,1) both;
}
body.scene-engine-ready .tutorial.scene-entering .tutorial-card {
  animation-name: cardIn;
  animation-duration: .58s;
  animation-timing-function: cubic-bezier(.16,.84,.2,1);
  animation-fill-mode: both;
}
/* Small on-screen transition accent. It masks decoding without covering the design. */
.scene-transition {
  position: fixed;
  inset: 0;
  z-index: 1800;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease, visibility 0s linear .18s;
}
.scene-transition.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .12s ease, visibility 0s;
}
.scene-transition-rail {
  position: absolute;
  right: -20vw;
  width: 78vw;
  height: 9px;
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--v8-gold) 18%, var(--v8-orange) 53%, var(--v8-red) 82%, transparent);
  box-shadow: 0 0 24px rgba(255,112,10,.72);
  opacity: 0;
}
.scene-transition .rail-a { top: 34%; }
.scene-transition .rail-b { top: 38%; height: 3px; filter: brightness(1.45); }
.scene-transition.is-forward .scene-transition-rail {
  animation: v9TransitionForward .82s cubic-bezier(.14,.82,.19,1) both;
}
.scene-transition.is-backward .scene-transition-rail {
  animation: v9TransitionBackward .82s cubic-bezier(.14,.82,.19,1) both;
}
.scene-transition .rail-b { animation-delay: .07s !important; }
.scene-transition-badge {
  position: absolute;
  right: 3vw;
  top: 43%;
  min-width: 260px;
  padding: 11px 22px 12px 28px;
  display: flex;
  flex-direction: column;
  color: #18120d;
  background: linear-gradient(135deg, var(--v8-gold), var(--v8-orange));
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%,0 18px);
  box-shadow: 0 14px 34px rgba(103,44,14,.28);
  opacity: 0;
  transform: translate3d(80px,0,0) rotate(-2deg);
}
.scene-transition.is-active .scene-transition-badge {
  animation: v9BadgeIn .72s .12s cubic-bezier(.14,.82,.19,1) both;
}
.scene-transition-badge small {
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: 2.3px;
  opacity: .72;
}
.scene-transition-badge b {
  margin-top: 3px;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: 1.18rem;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}
body.scene-navigation-locked {
  user-select: none;
}
@keyframes v9SceneDecorIn {
  0% { opacity: 0; transform: translate3d(6vw,0,0) scale(1.025); }
  65% { opacity: 1; }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
@keyframes v9AshFieldIn {
  0% { opacity: 0; transform: translate3d(0,34px,0); }
  100% { opacity: .92; transform: translate3d(0,0,0); }
}
@keyframes v9BackdropIn {
  0% { opacity: 0; transform: translate3d(3vw,0,0) scale(1.09); }
  100% { opacity: .19; transform: translate3d(0,0,0) scale(1.02); }
}
@keyframes v9SpeedStrikeIn {
  0% { opacity: 0; transform: translate3d(26vw,0,0) rotate(-31deg) scaleX(.45); }
  100% { opacity: 1; transform: translate3d(0,0,0) rotate(-31deg) scaleX(1); }
}
@keyframes v9BrushIn {
  0% { opacity: 0; transform: translate3d(18vw,0,0) rotate(-14deg) scaleX(.55); }
  100% { opacity: .48; transform: translate3d(0,0,0) rotate(-9deg) scaleX(1); }
}
@keyframes v9DriverFieldIn {
  0% { opacity: 0; transform: translate3d(5vw,0,0) scale(1.025); }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
@keyframes v9ImpactFieldIn {
  0% { opacity: 0; transform: translate3d(-4vw,28px,0) scale(.82) rotate(-4deg); }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1) rotate(0); }
}
@keyframes v9DownloadSlashIn {
  0% { opacity: 0; transform: translate3d(-18vw,0,0) skewX(-12deg); }
  100% { opacity: .9; transform: translate3d(0,0,0) skewX(-12deg); }
}
@keyframes v9TireTrailIn {
  0% { opacity: 0; transform: translate3d(-8vw,18vh,0) rotate(-4deg); }
  100% { opacity: .52; transform: translate3d(0,0,0) rotate(0); }
}
@keyframes v9TransitionForward {
  0% { opacity: 0; transform: translate3d(22vw,0,0) rotate(-31deg) scaleX(.3); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-112vw,0,0) rotate(-31deg) scaleX(1.08); }
}
@keyframes v9TransitionBackward {
  0% { opacity: 0; transform: translate3d(-112vw,0,0) rotate(-31deg) scaleX(.3); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(22vw,0,0) rotate(-31deg) scaleX(1.08); }
}
@keyframes v9BadgeIn {
  0% { opacity: 0; transform: translate3d(80px,0,0) rotate(-2deg) scale(.96); }
  26%,72% { opacity: 1; transform: translate3d(0,0,0) rotate(-2deg) scale(1); }
  100% { opacity: 0; transform: translate3d(-30px,0,0) rotate(-2deg) scale(.985); }
}
/* ======================================================================
   V10 — MAPS + CREDITS SCENES
   Adds a full-screen battlefield showcase after Drivers, removes the old
   standalone Features scene, and folds the former footer into Credits.
   ====================================================================== */

:root {
  --map-accent: #ff7714;
  --map-accent2: #ffd31c;
  --map-accent3: #2a211b;
  --map-progress: 12.5%;
}
/* The NEWS & UPDATES label receives enough room without changing
   the existing compact/mobile behavior. */
@media (min-width: 1051px) {
  .main-nav a { min-width: 108px; }
  .main-nav a:first-child { min-width: 158px; }
  .main-nav a:first-child .nav-copy b { font-size: .78rem; }
}
/* Two exact NEWS categories. */
.news-tabs { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
.news-card.is-hidden { display: none; }
.news-grid:has(.news-card:not(.is-hidden):only-child) {
  grid-template-columns: minmax(320px, 760px);
  justify-content: center;
}
.news-card:not(.is-hidden) { animation: v10NewsCardIn .52s cubic-bezier(.16,.84,.2,1) both; }
@keyframes v10NewsCardIn {
  from { opacity: 0; transform: translate3d(0,22px,0) scale(.975); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
/* ------------------------------ MAPS -------------------------------- */
.maps {
  position: relative;
  height: calc(100vh - 58px);
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: #14110f;
  isolation: isolate;
}
.map-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}
.map-background {
  position: absolute;
  z-index: 0;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.05);
  transform: translate3d(0,0,0) scale(1.03);
  animation: mapBackdropEnter .92s cubic-bezier(.16,.84,.2,1) both, mapBackdropDrift 14s .92s ease-in-out infinite alternate;
  transition: opacity .38s ease, transform .38s ease;
}
.map-background.is-exiting {
  opacity: 0;
  transform: translate3d(-5vw,0,0) scale(1.075);
}
.map-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,12,11,.88) 0%, rgba(13,12,11,.58) 34%, transparent 59%),
    linear-gradient(180deg, rgba(9,8,8,.32), transparent 35%, rgba(8,7,7,.58));
  pointer-events: none;
}
.map-grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.33) 0 1px, transparent 1.4px),
    linear-gradient(115deg, transparent 0 52%, rgba(255,255,255,.08) 52.2% 52.5%, transparent 52.8%);
  background-size: 12px 12px, 100% 100%;
  animation: mapGrainFloat 10s ease-in-out infinite alternate;
}
.map-orange-world {
  position: absolute;
  z-index: 2;
  top: -20%;
  right: -13%;
  bottom: -22%;
  width: 53%;
  opacity: .62;
  clip-path: polygon(30% 0,100% 0,100% 100%,0 100%,18% 72%,4% 48%,21% 24%);
  background:
    radial-gradient(circle at 68% 31%, rgba(255,237,153,.48), transparent 21%),
    linear-gradient(138deg, var(--map-accent2), var(--map-accent) 52%, var(--map-accent3));
  box-shadow: -36px 0 90px rgba(91,36,9,.28);
  mix-blend-mode: screen;
  animation: mapColorWorld 9s ease-in-out infinite alternate;
}
.map-orange-world::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .33;
  background:
    repeating-linear-gradient(112deg, transparent 0 70px, rgba(255,255,255,.24) 71px 74px),
    radial-gradient(circle, rgba(74,24,7,.38) 0 1.2px, transparent 1.7px);
  background-size: auto, 10px 10px;
}
.map-speed-line {
  position: absolute;
  z-index: 4;
  right: -8vw;
  width: 58vw;
  height: 7px;
  transform: rotate(-31deg);
  transform-origin: center;
  pointer-events: none;
  box-shadow: 0 0 22px currentColor;
  animation: mapSpeedSweep 6.2s ease-in-out infinite alternate;
}
.map-speed-a { top: 23%; color: var(--map-accent); background: currentColor; }
.map-speed-b { top: 28%; height: 3px; color: rgba(255,255,255,.86); background: currentColor; animation-delay: -2.8s; }
.map-ghost {
  position: absolute;
  z-index: 2;
  left: 2vw;
  bottom: 2.5%;
  max-width: 80vw;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(255,255,255,.085);
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(8rem,17vw,20rem);
  line-height: .72;
  letter-spacing: 5px;
  text-transform: uppercase;
  transform: rotate(-2deg);
  animation: mapGhostFloat 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.map-layout {
  position: relative;
  z-index: 6;
  width: min(1600px,96vw);
  height: 100%;
  margin: auto;
}
.map-info-card {
  position: absolute;
  left: 3.3%;
  top: 8%;
  width: min(560px,38vw);
  padding: 20px 24px 24px;
  color: #f7f2e9;
  background:
    linear-gradient(135deg, rgba(255,127,14,.16), transparent 34%),
    rgba(23,20,18,.88);
  border: 1px solid rgba(255,255,255,.16);
  border-left: 6px solid var(--map-accent);
  box-shadow: 0 20px 55px rgba(0,0,0,.38);
  clip-path: polygon(0 0,94% 0,100% 7%,100% 100%,6% 100%,0 92%);
  backdrop-filter: blur(9px);
  animation: mapCardEnter .72s cubic-bezier(.16,.84,.2,1) both;
  transition: opacity .36s ease, transform .36s ease;
}
.map-info-card.is-exiting { opacity: 0; transform: translate3d(-75px,0,0); }
.map-mini-frame {
  position: relative;
  width: min(100%,390px);
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.86);
  background: #191512;
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
  clip-path: polygon(0 0,96% 0,100% 14%,100% 100%,0 100%);
}
.map-mini-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 3px var(--map-accent);
  pointer-events: none;
}
.map-mini-frame img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .65s ease; }
.map-info-card:hover .map-mini-frame img { transform: scale(1.035); }
.map-mini-frame span {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 7px 13px;
  color: #17120e;
  background: linear-gradient(135deg,#ffd31c,var(--map-accent));
  font: 900 .63rem Arial,sans-serif;
  letter-spacing: 1.7px;
}
.map-game {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 5px 11px 4px;
  color: #17110d;
  background: linear-gradient(120deg,#fff,var(--map-accent2));
  font: 900 .62rem Arial,sans-serif;
  letter-spacing: 1.8px;
  clip-path: polygon(0 0,96% 0,100% 50%,96% 100%,0 100%,6px 50%);
  box-shadow: 0 5px 16px rgba(0,0,0,.2);
}
.map-eyebrow {
  margin: 0 0 7px;
  color: var(--map-accent);
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: .8rem;
  letter-spacing: 3px;
}
.map-info-card h2 {
  margin: 0;
  color: #fff;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(3.6rem,5.6vw,6.7rem);
  line-height: .82;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 color-mix(in srgb,var(--map-accent) 55%,transparent);
}
.map-location {
  display: inline-flex;
  margin: 15px 0 10px;
  padding: 5px 12px;
  color: #17110d;
  background: #fff;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  max-width: 100%;
  line-height: 1.24;
  font-size: .82rem;
  letter-spacing: 1.8px;
  clip-path: polygon(0 0,95% 0,100% 50%,95% 100%,0 100%,7px 50%);
}
.map-description { margin: 0; max-width: 480px; color: #d6cec4; font-size: .83rem; line-height: 1.55; }
.map-stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 15px; }
.map-stat-grid article {
  min-width: 0;
  padding: 9px 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.map-stat-grid small { display: block; color: #9d948b; font-size: .54rem; letter-spacing: 1.5px; }
.map-stat-grid strong { display: block; margin-top: 3px; color: #fff; font-family: Impact,sans-serif; font-size: .87rem; letter-spacing: .7px; }
.map-white-highlight {
  position: absolute;
  z-index: 7;
  right: 9.5%;
  top: 11%;
  width: min(500px,34vw);
  padding: 22px 34px 24px 42px;
  color: #171310;
  background:
    linear-gradient(110deg, rgba(255,255,255,.96), #e9e4da 70%, #fff);
  border-left: 10px solid var(--map-accent);
  box-shadow: 0 18px 45px rgba(0,0,0,.27);
  clip-path: polygon(8% 0,100% 0,100% 78%,93% 100%,0 100%,4% 55%,0 18%);
  animation: mapHighlightEnter .76s .1s cubic-bezier(.16,.84,.2,1) both;
  transition: opacity .36s ease, transform .36s ease;
}
.map-white-highlight.is-exiting { opacity: 0; transform: translate3d(75px,0,0); }
.map-white-highlight small { color: #b13b0d; font-weight: 900; font-size: .58rem; letter-spacing: 2.3px; }
.map-white-highlight strong { display: block; margin-top: 5px; font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: clamp(1.35rem,2.1vw,2.3rem); line-height: .95; letter-spacing: .8px; }
.map-white-highlight p { margin: 9px 0 0; color: #514b45; font-size: .75rem; line-height: 1.45; }
.map-selector {
  position: absolute;
  z-index: 10;
  right: 1.1%;
  top: 18%;
  width: 92px;
  height: 65%;
  display: grid;
  grid-template-rows: 42px 1fr 42px;
  gap: 9px;
}
.map-arrow {
  border: 1px solid rgba(255,255,255,.24);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(19,16,14,.88);
  clip-path: polygon(9% 0,91% 0,100% 24%,100% 76%,91% 100%,9% 100%,0 76%,0 24%);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.map-arrow:hover { transform: scale(1.04); background: var(--map-accent); border-color: #fff; }
.map-arrow svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.map-thumbs { display: grid; grid-template-rows: repeat(4,1fr); gap: 8px; overflow: hidden; }
.map-thumb {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.76);
  background: #28221d;
  box-shadow: 0 5px 16px rgba(0,0,0,.34);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.map-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.08); transition: transform .35s ease, filter .35s ease; }
.map-thumb:hover { transform: translateX(-4px); }
.map-thumb:hover img { transform: scale(1.08); filter: saturate(1.12) contrast(1.08); }
.map-thumb.is-active { border-color: var(--map-accent); box-shadow: 0 0 0 3px #fff,0 7px 20px rgba(0,0,0,.42); }
.map-progress {
  position: absolute;
  z-index: 10;
  left: 3.4%;
  bottom: 21px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: Impact,sans-serif;
  font-size: 1.08rem;
  text-shadow: 0 2px 6px rgba(0,0,0,.55);
}
.map-progress i { position: relative; display: block; width: 130px; height: 4px; overflow: hidden; background: rgba(255,255,255,.22); }
.map-progress i::before { content: ""; display: block; width: var(--map-progress); height: 100%; background: var(--map-accent); transition: width .45s ease; }
.map-progress i b { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,#ffd31c,var(--map-accent),#fff); transform-origin: left; animation: mapAutoTimer 15s linear forwards; }
.map-progress small { margin-left: 5px; color: rgba(255,255,255,.72); font: 700 .55rem Arial,sans-serif; letter-spacing: 1.3px; }
.map-progress { --driver-accent: var(--map-accent); --driver-accent2: var(--map-accent2); }
.map-progress.is-auto-off i b { animation: none !important; transform: scaleX(0) !important; opacity: .25; }
.map-progress.is-auto-off i { background: rgba(255,255,255,.13); }
.map-progress .driver-auto-toggle { min-width: 72px; height: 25px; }
@keyframes mapBackdropEnter { from { opacity: 0; transform: translate3d(7vw,0,0) scale(1.12); } to { opacity: 1; transform: translate3d(0,0,0) scale(1.03); } }
@keyframes mapBackdropDrift { from { transform: translate3d(-1.2%,0,0) scale(1.03); } to { transform: translate3d(1.5%,-.5%,0) scale(1.075); } }
@keyframes mapColorWorld { from { transform: translate3d(1.5%,0,0) rotate(.2deg); } to { transform: translate3d(-1%,1%,0) rotate(-.45deg); } }
@keyframes mapGrainFloat { from { transform: translate3d(-.5%,0,0); } to { transform: translate3d(.7%,.5%,0); } }
@keyframes mapSpeedSweep { from { transform: rotate(-31deg) translate3d(-8%,0,0); opacity: .58; } to { transform: rotate(-31deg) translate3d(7%,0,0); opacity: 1; } }
@keyframes mapGhostFloat { from { transform: translate3d(-1%,0,0) rotate(-2deg); } to { transform: translate3d(1.2%,-1%,0) rotate(-1.1deg); } }
@keyframes mapCardEnter { from { opacity: 0; transform: translate3d(-85px,0,0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes mapHighlightEnter { from { opacity: 0; transform: translate3d(95px,0,0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes mapAutoTimer { from { transform: scaleX(0); } to { transform: scaleX(1); } }
/* ----------------------------- CREDITS ------------------------------ */
.credits {
  min-height: calc(100vh - 58px);
  padding-top: clamp(76px,8vh,105px);
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #171310;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.72), transparent 25%),
    linear-gradient(132deg,#ddd8ce,#c8c0b2 56%,#b7ad9f);
}
.credits .scene-panel { left: 52%; right: -12%; top: -22%; bottom: -25%; }
.credits .scene-ghost { left: -1vw; top: 5%; }
.credits .scene-halftone { width: 62vw; }
.credits-header,
.credits-grid,
.credits-legal,
.credits-footer-strip { position: relative; z-index: 5; width: min(1240px,90vw); margin-inline: auto; }
.credits-header { max-width: 800px; margin-left: max(5vw,calc((100vw - 1240px)/2)); margin-right: auto; }
.credits-header h2 {
  margin: 0;
  color: #171310;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(4.4rem,8vw,8.6rem);
  line-height: .8;
  letter-spacing: 1px;
  text-shadow: 5px 6px 0 rgba(255,117,17,.26);
}
.credits-header > p:last-child { max-width: 650px; margin: 18px 0 0; color: #554f48; line-height: 1.6; }
.credits-crest {
  position: absolute;
  z-index: 2;
  right: 4vw;
  top: 8%;
  color: rgba(52,30,17,.06);
  font-family: Impact,sans-serif;
  font-size: min(34vw,520px);
  line-height: .75;
  transform: rotate(-8deg);
  pointer-events: none;
}
.credits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 25px; }
.credit-card {
  position: relative;
  min-height: 190px;
  padding: 24px 25px 22px;
  overflow: hidden;
  color: #eee8df;
  background:
    linear-gradient(145deg,rgba(255,123,16,.13),transparent 38%),
    rgba(31,26,23,.91);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 16px 34px rgba(89,47,21,.16);
  clip-path: polygon(0 0,94% 0,100% 12%,100% 100%,7% 100%,0 87%);
}
.credit-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 5px; background: linear-gradient(90deg,var(--v8-orange),var(--v8-gold)); }
.credit-primary { background: linear-gradient(135deg,#ff7512,#e94a10); color: #17110d; }
.credit-primary::after { background: #fff; }
.credit-number { position: absolute; right: 17px; top: 5px; color: rgba(255,255,255,.09); font-family: Impact,sans-serif; font-size: 5.8rem; line-height: 1; }
.credit-primary .credit-number { color: rgba(255,255,255,.26); }
.credit-card small { position: relative; z-index: 2; color: #ffb728; font-weight: 900; font-size: .57rem; letter-spacing: 2px; }
.credit-primary small { color: #3c1a0b; }
.credit-card h3 { position: relative; z-index: 2; margin: 8px 0 11px; font-family: Impact,"Arial Narrow Bold",sans-serif; font-size: clamp(1.65rem,2.3vw,2.7rem); line-height: .92; letter-spacing: .7px; }
.credit-card p { position: relative; z-index: 2; margin: 0; max-width: 355px; color: #bbb1a8; font-size: .76rem; line-height: 1.48; }
.credit-primary p { color: #3e2518; }
.credits-legal {
  margin-top: 14px;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 23px;
  color: #eee8df;
  background: rgba(28,24,21,.91);
  border-left: 7px solid var(--v8-orange);
  clip-path: polygon(0 0,98% 0,100% 24%,100% 100%,2% 100%,0 76%);
}
.credits-legal img { width: 155px; height: 84px; object-fit: contain; filter: drop-shadow(0 7px 7px rgba(0,0,0,.4)); }
.credits-legal strong { color: #ffb51c; font-family: Impact,sans-serif; font-size: 1.3rem; letter-spacing: 1px; }
.credits-legal p { margin: 5px 0 0; color: #bdb4ab; font-size: .72rem; line-height: 1.4; }
.credits-footer-strip {
  margin-top: 14px;
  min-height: 70px;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 20px;
  color: #3e352e;
  background: rgba(255,255,255,.44);
  border-top: 1px solid rgba(83,42,18,.18);
  border-bottom: 1px solid rgba(83,42,18,.18);
}
.credits-footer-strip img { width: 118px; height: 58px; object-fit: contain; }
.credits-footer-strip p { margin: 0; font-size: .7rem; line-height: 1.35; }
.credits-footer-strip span { font-family: Impact,sans-serif; font-size: .85rem; letter-spacing: 1px; white-space: nowrap; }
/* Integrate new scenes with the V9 cinematic/GPU engine. */
body.scene-engine-ready .scene-section.scene-active .map-background,
body.scene-engine-ready .scene-section.scene-active .map-orange-world,
body.scene-engine-ready .scene-section.scene-active .map-grain,
body.scene-engine-ready .scene-section.scene-active .map-speed-line,
body.scene-engine-ready .scene-section.scene-active .map-ghost,
body.scene-engine-ready .scene-section.scene-active .map-info-card,
body.scene-engine-ready .scene-section.scene-active .map-white-highlight,
body.scene-engine-ready .scene-section.scene-active .credits-crest {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
body.scene-engine-ready .scene-section:not(.scene-active) .map-background,
body.scene-engine-ready .scene-section:not(.scene-active) .map-orange-world,
body.scene-engine-ready .scene-section:not(.scene-active) .map-grain,
body.scene-engine-ready .scene-section:not(.scene-active) .map-speed-line,
body.scene-engine-ready .scene-section:not(.scene-active) .map-ghost,
body.scene-engine-ready .scene-section:not(.scene-active) .map-info-card,
body.scene-engine-ready .scene-section:not(.scene-active) .map-white-highlight,
body.scene-engine-ready .scene-section:not(.scene-active) .credits-crest { will-change: auto; }
body.scene-engine-ready .maps.scene-entering .map-background { animation: mapBackdropEnter .95s cubic-bezier(.16,.84,.2,1) both, mapBackdropDrift 14s .95s ease-in-out infinite alternate; }
body.scene-engine-ready .maps.scene-entering .map-orange-world { animation: v9SceneDecorIn .9s cubic-bezier(.16,.84,.2,1) both, mapColorWorld 9s .9s ease-in-out infinite alternate; }
body.scene-engine-ready .maps.scene-entering .map-info-card { animation: mapCardEnter .72s .1s cubic-bezier(.16,.84,.2,1) both; }
body.scene-engine-ready .maps.scene-entering .map-white-highlight { animation: mapHighlightEnter .76s .18s cubic-bezier(.16,.84,.2,1) both; }
body.scene-engine-ready .credits.scene-entering .credit-card { animation: cardIn .58s cubic-bezier(.16,.84,.2,1) both; }
body.scene-engine-ready .credits.scene-entering .credit-card:nth-child(2) { animation-delay: .08s; }
body.scene-engine-ready .credits.scene-entering .credit-card:nth-child(3) { animation-delay: .16s; }
/* NEWS now shows one chosen category at a time. */
.news .news-grid { grid-template-columns: minmax(320px,760px); justify-content: center; }
.news .news-card:last-child { grid-column: auto; }
/* ========================================================================== 
   V11 — FULL CONCURRENT LOADING + USER DECOR ART
   No visual system is removed. All new movement uses transform/opacity only.
   ========================================================================== */

/* ---------- NEWS & UPDATES: uploaded tire artwork behind the title ---------- */
.news { isolation: isolate; }
.news-tire-depth,
.news-skid-curves {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.news-tire-depth {
  left: max(-5vw, -70px);
  top: 2%;
  width: min(64vw, 1050px);
  opacity: .16;
  mix-blend-mode: multiply;
  transform: translate3d(-3%, -6%, 0) rotate(-3deg);
}
.news-tire-depth img { width: 100%; height: auto; display: block; }
.news-skid-curves {
  right: -8vw;
  bottom: -16%;
  width: min(60vw, 980px);
  opacity: .13;
  mix-blend-mode: multiply;
  transform: translate3d(4%, 4%, 0) rotate(8deg);
}
.news-skid-curves img { width: 100%; height: auto; display: block; }
.news .section-heading,
.news .news-tabs,
.news .news-grid { z-index: 5; }
body.scene-engine-ready .news.scene-entering .news-tire-depth {
  animation: v11NewsDepthIn 1.05s cubic-bezier(.16,.84,.2,1) both, v11NewsDepthFloat 12s 1.05s ease-in-out infinite alternate;
}
body.scene-engine-ready .news.scene-entering .news-skid-curves {
  animation: v11NewsCurvesIn 1.08s .08s cubic-bezier(.16,.84,.2,1) both, v11NewsCurvesFloat 13s 1.16s ease-in-out infinite alternate;
}
@keyframes v11NewsDepthIn {
  from { opacity: 0; transform: translate3d(-14%, 9%, 0) rotate(-8deg) scale(.94); }
  to { opacity: .16; transform: translate3d(-3%, -6%, 0) rotate(-3deg) scale(1); }
}
@keyframes v11NewsDepthFloat {
  from { transform: translate3d(-3%, -6%, 0) rotate(-3deg) scale(1); }
  to { transform: translate3d(-1%, -4%, 0) rotate(-1.5deg) scale(1.015); }
}
@keyframes v11NewsCurvesIn {
  from { opacity: 0; transform: translate3d(19%, 14%, 0) rotate(15deg) scale(.9); }
  to { opacity: .13; transform: translate3d(4%, 4%, 0) rotate(8deg) scale(1); }
}
@keyframes v11NewsCurvesFloat {
  from { transform: translate3d(4%, 4%, 0) rotate(8deg); }
  to { transform: translate3d(1%, 1%, 0) rotate(5.5deg); }
}
/* ---------- TUTORIAL: animated fire wheel + bottom-center skid artwork ---------- */
.tutorial { isolation: isolate; }
.tutorial-fire-wheel,
.tutorial-bottom-skids {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.tutorial-fire-wheel {
  right: clamp(-170px, -7vw, -60px);
  top: 14%;
  width: min(44vw, 690px);
  aspect-ratio: 650 / 457;
  opacity: .58;
  mix-blend-mode: multiply;
}
.tutorial-fire-wheel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 67% 68%;
  backface-visibility: hidden;
}
.tutorial-fire-wheel-base { opacity: .92; filter: saturate(1.12) contrast(1.04); }
.tutorial-fire-wheel-glow {
  opacity: .34;
  mix-blend-mode: screen;
  filter: saturate(1.5) brightness(1.08) blur(1.1px);
  animation: v11FlameFlicker 1.15s steps(2,end) infinite alternate;
}
.tutorial-fire-wheel-heat {
  opacity: .2;
  mix-blend-mode: color-dodge;
  filter: saturate(1.75) brightness(1.2) blur(3px);
  animation: v11FlameHeat 1.65s ease-in-out infinite alternate;
}
.tutorial-bottom-skids {
  left: 50%;
  bottom: -19%;
  width: min(76vw, 1320px);
  opacity: .18;
  mix-blend-mode: multiply;
  transform: translate3d(-50%, 0, 0);
}
.tutorial-bottom-skids img { width: 100%; height: auto; display: block; }
.tutorial .section-heading,
.tutorial .tutorial-tabs,
.tutorial .tutorial-grid { z-index: 5; }
body.scene-engine-ready .tutorial.scene-entering .tutorial-fire-wheel {
  animation: v11FireWheelIn 1.08s cubic-bezier(.16,.84,.2,1) both, v11WheelHover 6.2s 1.08s ease-in-out infinite alternate;
}
body.scene-engine-ready .tutorial.scene-entering .tutorial-bottom-skids {
  animation: v11BottomSkidsIn 1.15s .08s cubic-bezier(.16,.84,.2,1) both;
}
@keyframes v11FireWheelIn {
  from { opacity: 0; transform: translate3d(22%, 8%, 0) rotate(7deg) scale(.88); }
  to { opacity: .58; transform: translate3d(0,0,0) rotate(0) scale(1); }
}
@keyframes v11WheelHover {
  from { transform: translate3d(0,0,0) rotate(0) scale(1); }
  to { transform: translate3d(-1.2%, -1.5%, 0) rotate(-1deg) scale(1.018); }
}
@keyframes v11FlameFlicker {
  0% { opacity: .22; transform: translate3d(-1.2%, .5%, 0) scale(.992,1.015); }
  45% { opacity: .42; transform: translate3d(.8%, -1.2%, 0) scale(1.012,.985); }
  100% { opacity: .29; transform: translate3d(-.3%, -2%, 0) scale(.997,1.028); }
}
@keyframes v11FlameHeat {
  from { opacity: .12; transform: translate3d(-1.6%,1%,0) scale(.98,1.02); }
  to { opacity: .3; transform: translate3d(1.3%,-2.2%,0) scale(1.025,.985); }
}
@keyframes v11BottomSkidsIn {
  from { opacity: 0; transform: translate3d(-50%, 24%, 0) scale(.93); }
  to { opacity: .18; transform: translate3d(-50%, 0, 0) scale(1); }
}
/* ---------- DOWNLOAD: repeated orange track art, edge-to-edge ---------- */
.download { isolation: isolate; }
.download-track-wall {
  position: absolute;
  inset: -22% -10%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  opacity: .24;
  mix-blend-mode: multiply;
  transform: translate3d(0,0,0) rotate(-7deg) scale(1.08);
  backface-visibility: hidden;
}
.download-track-wall img {
  position: absolute;
  width: 47vw;
  min-width: 620px;
  height: auto;
  display: block;
  filter: saturate(1.04) contrast(1.04);
  backface-visibility: hidden;
}
.download-track-wall .track-copy-a { left: -8%; top: -2%; transform: rotate(-5deg); }
.download-track-wall .track-copy-b { left: 29%; top: -13%; transform: rotate(5deg) scale(1.03); }
.download-track-wall .track-copy-c { right: -10%; top: 1%; transform: rotate(-4deg); }
.download-inner { z-index: 6; }
body.scene-engine-ready .download.scene-entering .download-track-wall {
  animation: v11DownloadTracksIn 1.16s cubic-bezier(.16,.84,.2,1) both, v11DownloadTracksDrift 11s 1.16s ease-in-out infinite alternate;
}
@keyframes v11DownloadTracksIn {
  from { opacity: 0; transform: translate3d(0,20%,0) rotate(-14deg) scale(.98); }
  to { opacity: .24; transform: translate3d(0,0,0) rotate(-7deg) scale(1.08); }
}
@keyframes v11DownloadTracksDrift {
  from { transform: translate3d(-1%,0,0) rotate(-7deg) scale(1.08); }
  to { transform: translate3d(1.2%,-1%,0) rotate(-6deg) scale(1.09); }
}
/* ---------- GPU and paint containment for new decorative layers ---------- */
body.scene-engine-ready .scene-section.scene-active .news-tire-depth,
body.scene-engine-ready .scene-section.scene-active .news-skid-curves,
body.scene-engine-ready .scene-section.scene-active .tutorial-fire-wheel,
body.scene-engine-ready .scene-section.scene-active .tutorial-bottom-skids,
body.scene-engine-ready .scene-section.scene-active .download-track-wall {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
body.scene-engine-ready .scene-section:not(.scene-active) .news-tire-depth,
body.scene-engine-ready .scene-section:not(.scene-active) .news-skid-curves,
body.scene-engine-ready .scene-section:not(.scene-active) .tutorial-fire-wheel,
body.scene-engine-ready .scene-section:not(.scene-active) .tutorial-bottom-skids,
body.scene-engine-ready .scene-section:not(.scene-active) .download-track-wall {
  will-change: auto;
}
/* The old procedural tire layer is intentionally absent from the markup. */
.download-tire-trail { display: none !important; }
/* Wider containment reduces repaint propagation without altering the artwork. */
.news-card,
.tutorial-card,
.driver-art-wrap,
.map-info-card,
.credit-card { contain: layout paint style; }
/* ========================================================================== 
   V13 — VERIFIED USER REFINEMENTS
   This block intentionally uses new asset/CSS filenames to bypass browser cache.
   ========================================================================== */

/* NEWS & UPDATES: image #3 is removed from both markup and package. */
.news-tire-depth { display: none !important; }
/* TUTORIAL: a single unchanged image layer. No flame flicker, glow, heat,
   deformation, scale pulse, or rotation. Only a very soft up/down float. */
.tutorial-fire-wheel {
  animation: v13TutorialSoftFloat 8s ease-in-out infinite alternate !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.tutorial-fire-wheel-base {
  opacity: .92 !important;
  filter: saturate(1.12) contrast(1.04) !important;
  animation: none !important;
  transform: none !important;
}
.tutorial-fire-wheel-glow,
.tutorial-fire-wheel-heat { display: none !important; animation: none !important; }
body.scene-engine-ready .tutorial.scene-entering .tutorial-fire-wheel,
body.scene-engine-ready .tutorial .tutorial-fire-wheel {
  animation: v13TutorialSoftFloat 8s ease-in-out infinite alternate !important;
}
@keyframes v13TutorialSoftFloat {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -8px, 0); }
}
/* DOWNLOAD: keep side copies unchanged. The middle copy now clearly starts
   below the viewport, stretches through the entire scene, and leans right. */
.download-track-wall {
  overflow: hidden !important;
}
.download-track-wall .track-copy-b {
  z-index: 4;
  left: 35% !important;
  right: auto !important;
  top: auto !important;
  bottom: -72% !important;
  width: 45vw !important;
  min-width: 690px !important;
  height: 235% !important;
  max-height: none !important;
  object-fit: fill !important;
  object-position: center bottom !important;
  transform-origin: 50% 100% !important;
  transform: rotate(28deg) skewX(-3deg) scaleX(.96) !important;
  opacity: .98 !important;
}
/* Test mode requested by the user: all ambient animations remain running even
   while their section is off-screen. Entrance reveals still happen on arrival. */
body.scene-engine-ready .scene-section *,
body.scene-engine-ready .scene-section::before,
body.scene-engine-ready .scene-section::after {
  animation-play-state: running !important;
}
/* Give the continuously animated ambient layers a real animation even when the
   scene-entering class is absent. */
body.scene-engine-ready .hero .hero-bg {
  animation: v6HeroPan 18s ease-in-out infinite alternate;
}
body.scene-engine-ready .hero .hero-speed-a,
body.scene-engine-ready .hero .hero-speed-b {
  animation: v6SpeedLine 5.5s ease-in-out infinite alternate;
}
body.scene-engine-ready .news .news-skid-curves {
  animation: v11NewsCurvesFloat 13s ease-in-out infinite alternate;
}
body.scene-engine-ready .maps .map-background {
  animation: mapBackdropDrift 14s ease-in-out infinite alternate;
}
body.scene-engine-ready .maps .map-orange-world {
  animation: mapColorWorld 9s ease-in-out infinite alternate;
}
body.scene-engine-ready .download .download-track-wall {
  animation: v11DownloadTracksDrift 11s ease-in-out infinite alternate;
}
/* Preserve cinematic entrance + ambient motion for the active scene. */
body.scene-engine-ready .news.scene-entering .news-skid-curves {
  animation: v11NewsCurvesIn 1.08s .08s cubic-bezier(.16,.84,.2,1) both,
             v11NewsCurvesFloat 13s 1.16s ease-in-out infinite alternate;
}
body.scene-engine-ready .maps.scene-entering .map-background {
  animation: mapBackdropEnter .95s cubic-bezier(.16,.84,.2,1) both,
             mapBackdropDrift 14s .95s ease-in-out infinite alternate;
}
body.scene-engine-ready .maps.scene-entering .map-orange-world {
  animation: v9SceneDecorIn .9s cubic-bezier(.16,.84,.2,1) both,
             mapColorWorld 9s .9s ease-in-out infinite alternate;
}
body.scene-engine-ready .download.scene-entering .download-track-wall {
  animation: v11DownloadTracksIn 1.16s cubic-bezier(.16,.84,.2,1) both,
             v11DownloadTracksDrift 11s 1.16s ease-in-out infinite alternate;
}
/* Keep animated layers GPU-backed in every scene for this test mode. */
body.scene-engine-ready .scene-section .v8-scene-decor,
body.scene-engine-ready .scene-section .scene-panel,
body.scene-engine-ready .scene-section .scene-ghost,
body.scene-engine-ready .scene-section .scene-halftone,
body.scene-engine-ready .scene-section .scene-slash,
body.scene-engine-ready .scene-section .v6-embers,
body.scene-engine-ready .scene-section .hero-bg,
body.scene-engine-ready .scene-section .hero-speed,
body.scene-engine-ready .scene-section .driver-color-world,
body.scene-engine-ready .scene-section .driver-art-wrap,
body.scene-engine-ready .scene-section .map-background,
body.scene-engine-ready .scene-section .map-orange-world,
body.scene-engine-ready .scene-section .tutorial-fire-wheel,
body.scene-engine-ready .scene-section .tutorial-bottom-skids,
body.scene-engine-ready .scene-section .news-skid-curves,
body.scene-engine-ready .scene-section .download-track-wall {
  will-change: transform, opacity !important;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
/* V13 verification fix: override the original high-specificity pause rule. */
body.scene-engine-ready.all-ambient-animations .scene-section:not(.scene-active) *,
body.scene-engine-ready.all-ambient-animations .scene-section:not(.scene-active)::before,
body.scene-engine-ready.all-ambient-animations .scene-section:not(.scene-active)::after {
  animation-play-state: running !important;
}
/* ========================================================================== 
   V14 — VIEWPORT FIT + DOWNLOAD TRACK DIRECTION
   - Keeps Drivers and Maps exactly as they were.
   - Fits Home, News, Tutorial, Download and Credits to the visible browser
     viewport even when the browser is not in full-screen mode.
   - Re-aims the middle Download tire track from lower-center to upper-left.
   ========================================================================== */

/* The middle tire trace now begins below the lower middle of the scene and
   climbs toward the upper-left. Side copies remain untouched. */
.download-track-wall .track-copy-b {
  left: 30% !important;
  right: auto !important;
  top: auto !important;
  bottom: -76% !important;
  width: 46vw !important;
  min-width: 700px !important;
  height: 245% !important;
  max-height: none !important;
  object-fit: fill !important;
  object-position: center bottom !important;
  transform-origin: 50% 100% !important;
  transform: rotate(-29deg) skewX(2deg) scaleX(.96) !important;
  opacity: .98 !important;
}
/* Full cinematic layout: every scene except Drivers and Maps is sized to the
   actual visible viewport under the compact header. The internal content uses
   height-aware clamps so it cannot sink below the browser window. */
@media (min-width: 901px) and (min-height: 680px) {
  body.scene-engine-ready main > .hero.scene-section {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
  }

  body.scene-engine-ready main > .news.scene-section,
  body.scene-engine-ready main > .tutorial.scene-section,
  body.scene-engine-ready main > .download.scene-section,
  body.scene-engine-ready main > .credits.scene-section {
    height: calc(100svh - 58px);
    min-height: calc(100svh - 58px);
    max-height: calc(100svh - 58px);
    overflow: hidden;
  }

  /* ------------------------------ HOME ------------------------------ */
  .hero {
    padding-top: clamp(62px, 8.5vh, 86px);
  }
  .hero-inner {
    height: calc(100svh - clamp(62px, 8.5vh, 86px));
    min-height: 0;
    align-items: center;
  }
  .hero-copy {
    min-width: 0;
    padding: clamp(8px, 2vh, 28px) 0;
  }
  .hero-logo {
    width: min(620px, 88%, 63vh);
    max-height: 35vh;
    object-fit: contain;
    object-position: left center;
  }
  .hero-lead {
    margin: clamp(10px, 2vh, 22px) 0 clamp(14px, 2.5vh, 28px);
    font-size: clamp(.86rem, 1.65vh, 1.08rem);
    line-height: 1.58;
  }
  .hero-actions { gap: clamp(9px, 1.2vh, 15px); }
  .action {
    min-width: clamp(178px, 14vw, 220px);
    padding: clamp(10px, 1.5vh, 16px) clamp(17px, 1.5vw, 23px);
  }
  .action span { font-size: clamp(.92rem, 1.7vh, 1.1rem); }
  .hero-poster {
    height: min(64vh, 620px);
    min-height: 0;
  }
  .poster-ring {
    width: min(45vh, 460px);
    height: min(45vh, 460px);
    border-width: clamp(30px, 5.2vh, 55px);
  }
  .poster-road { height: min(68vh, 650px); width: min(22vh, 210px); }
  .poster-title { font-size: clamp(3.7rem, 9.2vh, 8rem); }
  .poster-tag {
    bottom: 8%;
    padding: clamp(8px, 1.2vh, 12px) clamp(20px, 2vw, 30px);
  }
  .scroll-cue { bottom: clamp(8px, 1.8vh, 22px); }
  .scroll-cue i { height: clamp(22px, 4vh, 42px); }

  /* ------------------------------ NEWS ------------------------------ */
  .news.section-shell {
    padding: clamp(58px, 7.2vh, 82px) max(4vw,calc((100vw - var(--max))/2)) clamp(18px, 2.6vh, 34px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    align-content: center;
  }
  .news .section-heading { align-self: end; }
  .news .section-heading h2 {
    font-size: clamp(3rem, 8.3vh, 6.25rem);
    line-height: .82;
  }
  .news-tabs {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    margin-top: clamp(-42px, -4.2vh, -22px);
    margin-bottom: clamp(12px, 2vh, 22px);
    min-height: 42px;
  }
  .news-tabs button {
    min-height: clamp(40px, 5.2vh, 54px);
    padding: clamp(9px, 1.25vh, 15px) clamp(18px, 1.8vw, 28px);
  }
  .news-grid {
    min-height: 0;
    height: 100%;
    margin-top: 0;
    align-items: center;
  }
  .news .news-card:not(.is-hidden) {
    width: min(760px, 72vw);
    max-height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    justify-self: center;
  }
  .news-card img {
    height: clamp(175px, 31vh, 330px);
    min-height: 0;
    aspect-ratio: auto;
  }
  .news-body { padding: clamp(12px, 1.8vh, 20px) 22px clamp(14px, 2.1vh, 24px); }
  .news-body h3 {
    margin: clamp(6px, .9vh, 10px) 0 clamp(8px, 1.4vh, 18px);
    font-size: clamp(1.12rem, 2.25vh, 1.42rem);
  }

  /* ---------------------------- TUTORIAL ---------------------------- */
  .tutorial.section-shell {
    padding: clamp(54px, 6.6vh, 78px) max(4vw,calc((100vw - var(--max))/2)) clamp(16px, 2.4vh, 30px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    align-content: center;
  }
  .tutorial .section-heading h2 {
    font-size: clamp(2.9rem, 7.7vh, 5.9rem);
    line-height: .82;
  }
  .tutorial-tabs {
    width: min(760px, 66vw);
    margin: clamp(10px, 1.6vh, 22px) auto clamp(12px, 1.9vh, 25px);
  }
  .tutorial-tabs button {
    min-height: clamp(38px, 5vh, 50px);
    padding: clamp(9px, 1.25vh, 15px);
  }
  .tutorial-grid {
    width: min(1120px, 88vw);
    height: 100%;
    min-height: 0;
    align-items: center;
  }
  .tutorial-card { max-height: 100%; }
  .tutorial-card img {
    height: clamp(145px, 27vh, 265px);
    aspect-ratio: auto;
  }
  .tutorial-card::before {
    width: clamp(40px, 6.2vh, 55px);
    height: clamp(40px, 6.2vh, 55px);
  }
  .tutorial-card h3 {
    padding: clamp(38px, 6vh, 60px) 18px clamp(10px, 1.5vh, 16px);
    font-size: clamp(.92rem, 1.9vh, 1.15rem);
  }

  /* ---------------------------- DOWNLOAD ---------------------------- */
  .download {
    min-height: 0;
    padding: clamp(20px, 3vh, 38px) 0;
  }
  .download-inner {
    height: 100%;
    min-height: 0;
    width: min(var(--max), 92vw);
    grid-template-columns: .7fr 1fr .75fr;
    gap: clamp(26px, 3.2vw, 58px);
  }
  .download-inner > img {
    width: min(380px, 25vw, 46vh);
    max-height: 50vh;
    object-fit: contain;
  }
  .download h2 {
    font-size: clamp(3.2rem, 8.4vh, 6.5rem);
    line-height: .82;
  }
  .download-inner p:not(.section-eyebrow) {
    margin: clamp(8px, 1.3vh, 16px) 0;
    font-size: clamp(.82rem, 1.6vh, 1rem);
    line-height: 1.52;
  }
  .build-meta { gap: clamp(7px, 1.1vh, 12px); }
  .build-meta span { padding-block: clamp(7px, 1.1vh, 12px); }
  .download-buttons { gap: clamp(8px, 1.2vh, 12px); }
  .download-buttons .action {
    min-width: 0;
    width: 100%;
    padding-block: clamp(11px, 1.45vh, 16px);
  }

  /* ----------------------------- CREDITS ----------------------------- */
  .credits.section-shell {
    min-height: 0;
    padding: clamp(50px, 6.2vh, 72px) 0 clamp(10px, 1.6vh, 20px);
    justify-content: center;
  }
  .credits-header h2 {
    font-size: clamp(3.35rem, 8.3vh, 7rem);
    line-height: .78;
  }
  .credits-header > p:last-child {
    margin-top: clamp(7px, 1.15vh, 15px);
    font-size: clamp(.72rem, 1.45vh, .95rem);
    line-height: 1.42;
  }
  .credits-grid {
    gap: clamp(8px, 1vw, 14px);
    margin-top: clamp(10px, 1.55vh, 20px);
  }
  .credit-card {
    min-height: clamp(128px, 20vh, 180px);
    padding: clamp(15px, 2.2vh, 23px) clamp(17px, 1.55vw, 25px);
  }
  .credit-number { font-size: clamp(4rem, 8.5vh, 5.5rem); }
  .credit-card h3 {
    margin: clamp(4px, .65vh, 8px) 0 clamp(6px, .9vh, 10px);
    font-size: clamp(1.35rem, 3.2vh, 2.45rem);
  }
  .credit-card p {
    font-size: clamp(.66rem, 1.25vh, .76rem);
    line-height: 1.35;
  }
  .credits-legal {
    margin-top: clamp(7px, 1vh, 12px);
    padding: clamp(7px, 1.2vh, 12px) 20px;
    grid-template-columns: clamp(110px, 12vw, 160px) 1fr;
    gap: clamp(12px, 1.4vw, 22px);
  }
  .credits-legal img {
    width: clamp(105px, 11vw, 145px);
    height: clamp(48px, 7.5vh, 76px);
  }
  .credits-legal strong { font-size: clamp(.98rem, 2vh, 1.2rem); }
  .credits-legal p {
    margin-top: 3px;
    font-size: clamp(.62rem, 1.15vh, .7rem);
    line-height: 1.28;
  }
  .credits-footer-strip {
    min-height: clamp(52px, 7.6vh, 66px);
    margin-top: clamp(7px, 1vh, 12px);
    padding: 5px 16px;
    grid-template-columns: clamp(92px, 9vw, 120px) 1fr auto;
    gap: clamp(10px, 1.2vw, 18px);
  }
  .credits-footer-strip img {
    width: clamp(88px, 8.5vw, 110px);
    height: clamp(42px, 6.5vh, 54px);
  }
}
/* Extra safety for short, wide desktop windows. Cinematic navigation is still
   enabled at 680px, so this range receives a denser but unchanged composition. */
@media (min-width: 901px) and (min-height: 680px) and (max-height: 790px) {
  .kicker, .section-eyebrow { margin-bottom: 6px; font-size: .72rem; }
  .hero-inner { gap: 2.5vw; }
  .hero-poster { height: 58vh; }
  .news.section-shell { padding-top: 52px; padding-bottom: 14px; }
  .news-tabs { margin-top: -34px; margin-bottom: 9px; }
  .news-card img { height: clamp(155px, 28vh, 225px); }
  .news-body { padding-top: 10px; padding-bottom: 12px; }
  .tutorial.section-shell { padding-top: 50px; padding-bottom: 12px; }
  .tutorial-tabs { margin-top: 7px; margin-bottom: 9px; }
  .tutorial-card img { height: clamp(130px, 24vh, 190px); }
  .download-inner { gap: 24px; }
  .credits.section-shell { padding-top: 47px; padding-bottom: 7px; }
  .credits-header > p:last-child { margin-top: 5px; }
  .credits-grid { margin-top: 7px; }
  .credit-card { min-height: 122px; padding-top: 13px; padding-bottom: 12px; }
  .credits-legal, .credits-footer-strip { margin-top: 6px; }
}
/* Do not touch the approved Drivers and Maps compositions. */

/* V14.1 verified tire-track placement: its lower end sits just below the
   center of the bottom edge and the stretched path travels to the upper-left. */
.download-track-wall .track-copy-b {
  left: 30% !important;
  bottom: -20% !important;
  width: 48vw !important;
  min-width: 720px !important;
  height: 185% !important;
  transform: rotate(-29deg) skewX(2deg) scaleX(.96) !important;
}
/* Final horizontal alignment for the middle track: the lower tread enters at
   the bottom-center, while the same diagonal continues toward the upper-left. */
.download-track-wall .track-copy-b {
  left: 42% !important;
  bottom: -18% !important;
}
/* ========================================================================== 
   V15 — RESTORED VISUAL SCALE + NEWS/UPDATES/FEATURES SHOWCASE
   Keeps the V14 viewport-sized scene boundaries, but restores the original
   logo, typography, controls and card scale inside those boundaries.
   ========================================================================== */

/* ---------------- NEWS & UPDATES: cinematic centered screenshot carousel ---------------- */
.news-showcase {
  position: relative;
  z-index: 6;
  width: 100vw;
  height: clamp(420px, 55vh, 545px);
  min-height: 0;
  margin: 8px calc(50% - 50vw) 0;
  overflow: hidden;
}
.news-viewport,
.news-track { position: absolute; inset: 0; }
.news-track { perspective: 1400px; transform-style: preserve-3d; }
.news-slide {
  position: absolute;
  left: 50%;
  top: 2%;
  width: min(760px, 56vw);
  color: #f6f2eb;
  background: #171513;
  border: 2px solid rgba(255,255,255,.72);
  box-shadow: 0 24px 55px rgba(50,28,12,.28);
  clip-path: polygon(0 0,96% 0,100% 6%,100% 100%,4% 100%,0 94%);
  transform-origin: center center;
  transition:
    left .72s cubic-bezier(.16,.84,.2,1),
    transform .72s cubic-bezier(.16,.84,.2,1),
    opacity .55s ease,
    filter .55s ease;
  cursor: pointer;
  overflow: hidden;
  backface-visibility: hidden;
  will-change: left, transform, opacity;
}
.news-slide::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  border: 5px solid transparent;
  border-image: linear-gradient(120deg,#fff 0 15%,#ffbf22 25%,#ff5a16 74%,#fff 88%) 1;
  opacity: .78;
}
.news-slide.is-current {
  left: 50%;
  z-index: 4;
  opacity: 1;
  filter: saturate(1.08) contrast(1.03);
  transform: translate3d(-50%,0,0) scale(1);
  cursor: default;
}
.news-slide.is-prev {
  left: 7%;
  z-index: 2;
  opacity: .48;
  filter: saturate(.82) contrast(.94);
  transform: translate3d(-50%,7%,0) scale(.72);
}
.news-slide.is-next {
  left: 93%;
  z-index: 2;
  opacity: .48;
  filter: saturate(.82) contrast(.94);
  transform: translate3d(-50%,7%,0) scale(.72);
}
.news-slide.is-far-left {
  left: -34%;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-50%,10%,0) scale(.62);
  pointer-events: none;
}
.news-slide.is-far-right {
  left: 134%;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-50%,10%,0) scale(.62);
  pointer-events: none;
}
.news-shot-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101214;
}
.news-shot-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform 8s ease;
}
.news-slide.is-current .news-shot-frame img { transform: scale(1.035); }
.news-shot-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050607;
}
.news-shot-frame video:fullscreen,
.news-shot-frame video:-webkit-full-screen {
  object-fit: contain !important;
  background: #000 !important;
}
.news-media:fullscreen,
.news-media:-webkit-full-screen {
  object-fit: contain !important;
  background: #000 !important;
}
.news-slide.has-video .news-shot-frame {
  background:
    radial-gradient(circle at top,#21354d 0%,#111822 48%,#090c10 100%);
}
.news-slide.has-video:not(.is-current) .news-shot-frame video {
  pointer-events: none;
}
.news-slide.has-video.is-current {
  cursor: default;
}
.news-slide.has-video .news-slide-caption h3 {
  text-transform: uppercase;
}
.news-shot-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,transparent 20%,rgba(255,255,255,.17) 44%,transparent 61%),
    linear-gradient(180deg,transparent 62%,rgba(0,0,0,.42));
  transform: translateX(-80%);
  animation: v15NewsSheen 7.5s ease-in-out infinite;
  pointer-events: none;
}
.news-slide-caption {
  position: relative;
  min-height: 90px;
  padding: 14px 24px 17px;
  background:
    linear-gradient(92deg,rgba(255,92,18,.24),transparent 28%),
    linear-gradient(180deg,#25201c,#121211);
}
.news-slide-caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,#ff4d10,#ffc01e,#fff,#ff5a16);
}
.news-slide-caption span {
  display: block;
  color: #ffbb20;
  font-weight: 900;
  font-size: .66rem;
  letter-spacing: 2px;
}
.news-slide-caption h3 {
  margin: 5px 0 2px;
  color: #fff;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(1.35rem,2.1vw,2rem);
  line-height: 1;
  letter-spacing: .7px;
}
.news-slide-caption time { color: #a9a29a; font-size: .66rem; letter-spacing: 1px; }
.news-slide.is-prev .news-slide-caption,
.news-slide.is-next .news-slide-caption { opacity: .9; }
.news-arrow {
  position: absolute;
  z-index: 8;
  top: 42%;
  width: 72px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(39,34,29,.32);
  color: #171512;
  background: rgba(244,241,234,.88);
  box-shadow: 0 12px 30px rgba(56,31,12,.16);
  clip-path: polygon(0 0,86% 0,100% 13%,100% 100%,14% 100%,0 87%);
  transition: .25s ease;
  cursor: pointer;
}
.news-arrow-prev { left: calc(50% - min(430px,32vw)); }
.news-arrow-next { right: calc(50% - min(430px,32vw)); }
.news-arrow svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.news-arrow-label {
  position: absolute;
  top: -28px;
  color: #2a2520;
  font-family: Impact,sans-serif;
  font-size: .72rem;
  letter-spacing: 1.5px;
}
.news-arrow:hover:not(:disabled) {
  color: #fff;
  background: linear-gradient(145deg,#ffb51d,#f45113);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(240,83,14,.28);
}
.news-arrow:disabled {
  color: rgba(28,25,22,.26);
  background: rgba(217,212,203,.58);
  border-color: rgba(45,39,33,.12);
  box-shadow: none;
  cursor: not-allowed;
}
.news-dots {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 1px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.news-dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  background: rgba(33,29,25,.25);
  transform: skewX(-22deg);
  cursor: pointer;
  transition: .25s ease;
}
.news-dots button.is-active { width: 64px; background: linear-gradient(90deg,#ff4b11,#ffbe1e); }
.news-slide-enter { animation: v15NewsCurrentIn .6s cubic-bezier(.16,.84,.2,1) both; }
@keyframes v15NewsCurrentIn {
  from { opacity: .35; transform: translate3d(-50%,18px,0) scale(.96); }
  to { opacity: 1; transform: translate3d(-50%,0,0) scale(1); }
}
@keyframes v15NewsSheen {
  0%,58% { transform: translateX(-85%); opacity: 0; }
  67% { opacity: .8; }
  82%,100% { transform: translateX(90%); opacity: 0; }
}
/* ---------------- Restore the original visual scale inside V14 scene frames ---------------- */
@media (min-width: 901px) and (min-height: 680px) {
  /* HOME: original logo, text, buttons and poster sizes; only spacing is tightened. */
  .hero { padding-top: 76px; }
  .hero-inner {
    height: calc(100svh - 76px);
    grid-template-columns: 1.05fr .95fr;
    gap: min(4vw,52px);
  }
  .hero-copy { padding: 18px 0; }
  .kicker { margin-bottom: 12px; font-size: .88rem; }
  .hero-logo {
    width: min(660px,90%);
    max-height: none;
    object-fit: contain;
    object-position: left center;
  }
  .hero-lead { margin: 18px 0 24px; font-size: 1.08rem; line-height: 1.7; }
  .hero-actions { gap: 15px; }
  .action { min-width: 220px; padding: 16px 23px; }
  .action span { font-size: 1.1rem; }
  .hero-poster { height: min(650px,calc(100svh - 98px)); }
  .poster-ring { width: min(480px,54vh); height: min(480px,54vh); border-width: 55px; }
  .poster-road { width: 220px; height: min(690px,74vh); }
  .poster-title { font-size: clamp(4.5rem,7vw,8.5rem); }
  .poster-tag { bottom: 9%; padding: 12px 30px; }
  .scroll-cue { bottom: 13px; }
  .scroll-cue i { height: 34px; }

  /* NEWS: original title/tab scale retained within the fixed scene boundary. */
  .news.section-shell {
    padding: 62px max(4vw,calc((100vw - var(--max))/2)) 14px;
    display: grid;
    grid-template-rows: auto auto minmax(0,1fr);
    align-content: stretch;
  }
  .news .section-heading h2 { font-size: clamp(4.2rem,7vw,6.6rem); line-height: .85; }
  .news .section-eyebrow { font-size: .88rem; margin-bottom: 8px; }
  .news-tabs {
    justify-self: end;
    margin-top: -52px;
    margin-bottom: 4px;
    min-height: 52px;
  }
  .news-tabs button { min-height: 52px; padding: 15px 30px; font-size: .86rem; }
  .news-showcase { align-self: stretch; height: 100%; min-height: 420px; margin-top: 0; }

  /* TUTORIAL: restore original headings, tabs and screenshot-card sizes. */
  .tutorial.section-shell {
    padding: 58px max(4vw,calc((100vw - var(--max))/2)) 16px;
    grid-template-rows: auto auto minmax(0,1fr);
  }
  .tutorial .section-heading h2 { font-size: clamp(3.8rem,6vw,6.6rem); line-height: .86; }
  .tutorial .section-eyebrow { font-size: .88rem; margin-bottom: 8px; }
  .tutorial-tabs { width: min(760px,66vw); margin: 16px auto 20px; }
  .tutorial-tabs button { min-height: 48px; padding: 12px; font-size: .9rem; }
  .tutorial-grid { width: min(1120px,88vw); height: auto; align-self: center; }
  .tutorial-card img { height: auto; aspect-ratio: 16/9; }
  .tutorial-card::before { width: 55px; height: 55px; }
  .tutorial-card h3 { padding: 60px 18px 16px; font-size: 1.15rem; }

  /* DOWNLOAD: original logo, heading and button scale; balanced inside fixed frame. */
  .download { padding: 22px 0; }
  .download-inner {
    height: 100%;
    width: min(var(--max),92vw);
    grid-template-columns: .7fr 1fr .75fr;
    gap: min(4vw,58px);
  }
  .download-inner > img { width: auto; max-width: 430px; max-height: 58vh; }
  .download h2 { font-size: clamp(4.2rem,6vw,6.6rem); line-height: .88; }
  .download-inner p:not(.section-eyebrow) { margin: 14px 0; font-size: 1rem; line-height: 1.7; }
  .download-buttons { gap: 12px; }
  .download-buttons .action { min-width: 220px; padding: 16px 23px; }

  /* CREDITS: restore the original card and typography presence while reducing only gaps. */
  .credits.section-shell { padding: 54px 0 10px; }
  .credits-header h2 { font-size: clamp(4.4rem,8vw,8.6rem); line-height: .8; }
  .credits-header > p:last-child { margin-top: 11px; font-size: .95rem; line-height: 1.5; }
  .credits-grid { gap: 14px; margin-top: 15px; }
  .credit-card { min-height: 175px; padding: 22px 25px 20px; }
  .credit-number { font-size: 5.8rem; }
  .credit-card h3 { margin: 8px 0 9px; font-size: clamp(1.65rem,2.3vw,2.7rem); }
  .credit-card p { font-size: .76rem; line-height: 1.42; }
  .credits-legal {
    margin-top: 9px;
    padding: 11px 22px;
    grid-template-columns: 170px 1fr;
    gap: 23px;
  }
  .credits-legal img { width: 155px; height: 70px; }
  .credits-legal strong { font-size: 1.3rem; }
  .credits-legal p { font-size: .72rem; line-height: 1.35; }
  .credits-footer-strip {
    min-height: 62px;
    margin-top: 9px;
    padding: 6px 18px;
    grid-template-columns: 130px 1fr auto;
    gap: 20px;
  }
  .credits-footer-strip img { width: 118px; height: 52px; }
}
/* Short desktop windows: keep visual scale, compact only the blank spaces. */
@media (min-width: 901px) and (min-height: 680px) and (max-height: 790px) {
  .hero { padding-top: 68px; }
  .hero-inner { height: calc(100svh - 68px); gap: 28px; }
  .hero-copy { padding: 6px 0; }
  .hero-lead { margin: 12px 0 18px; line-height: 1.55; }
  .hero-poster { height: calc(100svh - 84px); }
  .poster-ring { width: min(430px,52vh); height: min(430px,52vh); border-width: 46px; }
  .poster-road { height: 70vh; width: 190px; }
  .news.section-shell { padding-top: 50px; padding-bottom: 8px; }
  .news-tabs { margin-top: -48px; }
  .news-showcase { min-height: 390px; }
  .news-slide { width: min(690px,53vw); }
  .news-slide-caption { min-height: 72px; padding: 10px 20px 12px; }
  .news-slide-caption h3 { font-size: 1.35rem; }
  .news-arrow { top: 39%; width: 64px; height: 94px; }
  .tutorial.section-shell { padding-top: 48px; padding-bottom: 8px; }
  .tutorial-tabs { margin-top: 8px; margin-bottom: 10px; }
  .tutorial-grid { width: min(1080px,86vw); }
  .tutorial-card h3 { padding-top: 48px; padding-bottom: 11px; }
  .download-inner { gap: 28px; }
  .credits.section-shell { padding-top: 45px; padding-bottom: 5px; }
  .credits-header > p:last-child { margin-top: 6px; }
  .credits-grid { margin-top: 8px; }
  .credit-card { min-height: 154px; padding-top: 16px; padding-bottom: 14px; }
  .credits-legal,.credits-footer-strip { margin-top: 5px; }
}
/* V15.1 alignment: keep the original heading scale while leaving the tab rail
   a clean dedicated zone on ordinary desktop widths. */
@media (min-width: 901px) and (min-height: 680px) {
  .news .section-heading { max-width: 70%; }
  .news .section-heading h2 { font-size: clamp(3.4rem,6vw,6.6rem); }
}
/* ==========================================================================\n   V17 — requested driver roster controls and group/faction presentation\n   ========================================================================== */
:root { --driver-auto-duration: 15s; }
.driver-kicker .driver-game-label { color: #11171b; }
.driver-kicker .driver-kicker-separator { color: rgba(17,23,27,.56); }
.driver-kicker .driver-faction { font-weight: 950; text-shadow: 0 1px 0 rgba(255,255,255,.38); }
.driver-kicker .faction-vigilante { color: #087dcc; }
.driver-kicker .faction-coyote { color: #ed7016; }
.driver-kicker .faction-drifter { color: #269451; }
.driver-kicker .faction-secret { color: #13a8c8; }
.driver-kicker .driver-game-label,
#modalKicker .driver-game-label {
  display: inline-block;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  background-image:
    linear-gradient(180deg,#fff8d8 0%,#ffd673 18%,#ff9b29 42%,#ff6516 64%,#fff2c8 100%),
    repeating-linear-gradient(118deg,rgba(255,255,255,.00) 0 8px,rgba(255,255,255,.22) 8px 12px);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(34,16,5,.34);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.18)) drop-shadow(0 2px 3px rgba(92,26,0,.18));
}
.vehicle-logo-text {
  display: inline-block;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  letter-spacing: inherit;
  text-transform: uppercase;
  background-image:
    linear-gradient(180deg,
      color-mix(in srgb,var(--driver-accent2) 16%,white 84%) 0%,
      color-mix(in srgb,var(--driver-accent2) 48%,white 52%) 20%,
      color-mix(in srgb,var(--driver-accent2) 82%,white 18%) 43%,
      color-mix(in srgb,var(--driver-accent) 76%,white 24%) 70%,
      color-mix(in srgb,var(--driver-accent3) 58%,white 42%) 100%),
    repeating-linear-gradient(125deg,rgba(255,255,255,0) 0 7px,rgba(255,255,255,.18) 7px 10px);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb,var(--driver-accent3) 58%,white 42%);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.26)) drop-shadow(0 2px 3px color-mix(in srgb,var(--driver-accent3) 38%,transparent));
}
.driver-progress i b { animation-duration: var(--driver-auto-duration); }
.driver-progress.is-auto-off i b { animation: none !important; transform: scaleX(0) !important; opacity: .25; }
.driver-progress.is-auto-off i { background: rgba(15,22,26,.17); }
.driver-auto-toggle {
  min-width: 72px;
  height: 25px;
  padding: 0 8px;
  border: 1px solid rgba(10,16,20,.26);
  border-radius: 999px;
  background: rgba(245,248,249,.72);
  color: #303a3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font: 900 .57rem/1 Arial,sans-serif;
  letter-spacing: .85px;
  box-shadow: 0 3px 9px rgba(0,0,0,.13);
  transition: background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.driver-auto-toggle:hover { transform: translateY(-1px); box-shadow: 0 5px 12px rgba(0,0,0,.18); }
.driver-auto-toggle:focus-visible { outline: 3px solid color-mix(in srgb,var(--driver-accent) 62%,transparent); outline-offset: 2px; }
.driver-auto-toggle .auto-toggle-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7e878b;
  box-shadow: 0 0 0 2px rgba(126,135,139,.15);
}
.driver-auto-toggle.is-on {
  color: #07141a;
  border-color: color-mix(in srgb,var(--driver-accent) 70%,#1b2429 30%);
  background: color-mix(in srgb,var(--driver-accent2) 32%,white 68%);
}
.driver-auto-toggle.is-on .auto-toggle-led {
  background: var(--driver-accent);
  box-shadow: 0 0 7px color-mix(in srgb,var(--driver-accent) 80%,transparent);
}
.driver-auto-toggle.is-off { background: rgba(32,39,43,.72); color: #f1f4f5; border-color: rgba(255,255,255,.16); }
.driver-progress #driverAutoDelay { margin-left: 0; min-width: 46px; }
#modalKicker .driver-game-label { color: #11171b; }
#modalKicker .driver-kicker-separator { color: rgba(17,23,27,.5); }
#modalKicker .faction-vigilante { color: #087dcc; }
#modalKicker .faction-coyote { color: #ed7016; }
#modalKicker .faction-drifter { color: #269451; }
#modalKicker .faction-secret { color: #13a8c8; }
/* ==========================================================================\n   V19 — supplied driver portraits, character art, vehicles and weapon assets\n   ========================================================================== */
.driver-copy { z-index: 7; }
/* Portraits align from the top. When a square crop is necessary, only the lower
   part is clipped, keeping every face and hairstyle correctly framed. */
.driver-thumb img,
.driver-thumb.is-active img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform: none;
  filter: saturate(.96) contrast(1.04);
}
.skill-icon { overflow: hidden; }
.skill-icon img { filter: none; }
.skill-icon.is-driver { padding: 0; background: #26323a; }
.skill-icon.is-driver img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; transform: none;
}
.skill-icon.is-weapon {
  padding: 7px;
  background: radial-gradient(circle at 50% 42%,rgba(255,255,255,.2),transparent 62%),linear-gradient(145deg,#465761,#26323a);
}
.skill-icon.is-weapon img {
  width: 100%; height: 100%; object-fit: contain; object-position: center; transform: none;
  filter: drop-shadow(0 4px 5px rgba(0,0,0,.38));
}
/* Vehicle artwork is smaller than the driver, mirrored, and staged on the left.
   Second Offense profiles show both supplied variants in one composed group. */
.driver-vehicle-art {
  position: absolute;
  z-index: 3;
  left: 25.5%;
  bottom: 1.6%;
  width: min(35vw,570px);
  height: 31%;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity .34s ease,transform .34s ease;
  will-change: transform,opacity;
}
.driver-vehicle-art.is-exiting { opacity: 0; transform: translate3d(-90px,24px,0) scale(.94); }
.driver-vehicle-image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  transform: translate3d(0,0,0) scaleX(-1);
  transform-origin: 50% 80%;
  filter: drop-shadow(-17px 16px 14px rgba(0,0,0,.42));
  animation: driverVehicleIn .78s cubic-bezier(.12,.84,.18,1) both;
  will-change: transform,opacity;
}
.driver-vehicle-image.vehicle-secondary {
  z-index: 1;
  left: -10%;
  bottom: 34%;
  width: 76%;
  height: 76%;
  opacity: .9;
  filter: saturate(.92) brightness(.92) drop-shadow(-13px 12px 12px rgba(0,0,0,.34));
}
.driver-vehicle-art:not(.has-two-vehicles) .vehicle-primary { width: 92%; height: 92%; }
@keyframes driverVehicleIn {
  from { opacity: 0; transform: translate3d(-120px,34px,0) scaleX(-1) scale(.88) rotate(-2deg); }
  72% { opacity: 1; }
  to { opacity: 1; transform: translate3d(0,0,0) scaleX(-1) scale(1) rotate(0); }
}
.driver-art-wrap img { object-fit: contain; object-position: center bottom; }
/* ==========================================================================\n   V20 — driver/vehicle stage spacing and stacked Second Offense vehicles\n   ========================================================================== */

/* Desktop portraits now finish at a protected edge: selector width + its
   right inset + roughly two centimetres of visual breathing room. Narrower
   portraits naturally travel farther right; broad poses receive a small
   per-driver optical inset from JavaScript. */
@media (min-width: 981px) {
  .driver-art-wrap {
    left: 38%;
    right: calc(1.1% + 90px + 2cm);
    justify-content: flex-end;
  }
  .driver-art-wrap img {
    margin-right: var(--driver-art-inset, 0px);
  }
}
/* Keep vehicle art GPU-composited while allowing small profile-specific stage
   corrections without interfering with the entrance/exit transform. */
.driver-vehicle-art {
  translate: var(--vehicle-group-shift-x, 0px) var(--vehicle-group-shift-y, 0px);
}
.driver-vehicle-image {
  transform-origin: 50% 80%;
}
.driver-vehicle-image.vehicle-primary {
  scale: var(--vehicle-primary-scale, 1);
}
/* Second Offense: vehicle A remains in its established lower position.
   Vehicle B is exactly 5% smaller and is staged above it rather than behind it. */
.driver-vehicle-art.has-two-vehicles .vehicle-primary {
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  scale: 1;
}
.driver-vehicle-art.has-two-vehicles .vehicle-secondary {
  left: 3%;
  bottom: 78%;
  z-index: 4;
  width: 100%;
  height: 100%;
  scale: .95;
  opacity: 1;
  filter: saturate(.98) brightness(.98) drop-shadow(-15px 13px 13px rgba(0,0,0,.38));
}
/* The two-car stack needs a little more clean stage width, but its lower car
   keeps the original anchor and footprint. */
@media (min-width: 981px) {
  .driver-vehicle-art.has-two-vehicles {
    left: 24.5%;
    width: min(34vw, 545px);
  }
}
/* ==========================================================================
   V21 — fine driver composition pass
   ========================================================================== */
.driver-art-wrap img {
  translate: var(--driver-art-shift-x, 0px) 0;
  scale: var(--driver-art-scale, 1);
  /* fuller vertical shadow from top to bottom without changing the art size */
  filter: drop-shadow(18px 0 18px rgba(0,0,0,.26)) drop-shadow(24px 18px 20px rgba(0,0,0,.34));
}
.driver-vehicle-image.vehicle-primary {
  translate: var(--vehicle-primary-x, 0px) calc(var(--vehicle-primary-y, 0px) * -1);
}
.driver-vehicle-image.vehicle-secondary {
  translate: var(--vehicle-secondary-x, 0px) calc(var(--vehicle-secondary-y, 0px) * -1);
  scale: var(--vehicle-secondary-scale, .95);
}
.driver-vehicle-art.has-two-vehicles .vehicle-primary {
  scale: var(--vehicle-primary-scale, 1);
}
.driver-vehicle-label {
  position: absolute;
  z-index: 6;
  left: -2%;
  padding: 4px 10px 3px;
  border-radius: 999px;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: .66rem;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--driver-accent2) 88%, white 12%);
  background: linear-gradient(135deg, rgba(8,12,18,.9), rgba(28,34,42,.78));
  border: 1px solid color-mix(in srgb, var(--driver-accent2) 42%, rgba(255,255,255,.24));
  box-shadow: 0 8px 16px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  pointer-events: none;
}
.driver-vehicle-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: middle;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.driver-vehicle-label.label-primary {
  left: var(--label-primary-left, 58%) !important;
  bottom: var(--label-primary-bottom, 8%);
  transform: translateX(-100%);
}
.driver-vehicle-label.label-secondary {
  left: var(--label-secondary-left, 61%) !important;
  bottom: var(--label-secondary-bottom, 126%);
  transform: translateX(-100%);
}
/* ==========================================================================
   V22 — Driver 01-13 composition refinement
   ========================================================================== */
.driver-backdrop-art {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.96) 0%, rgba(0,0,0,.9) 26%, rgba(0,0,0,.72) 58%, rgba(0,0,0,.32) 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.96) 0%, rgba(0,0,0,.9) 26%, rgba(0,0,0,.72) 58%, rgba(0,0,0,.32) 82%, transparent 100%);
}
/* ==========================================================================
   V23 — portrait edge safety and 02/03/04/07/10/11 refinements
   ========================================================================== */
@media (min-width: 981px) {
  .driver-art-wrap {
    right: calc(0.4% + 90px + 1.1cm);
    overflow: visible;
  }
}
.driver-art-wrap { overflow: visible; }
/* ==========================================================================
   V24 — First Offense portrait edge offset and driver 11 car drop
   ========================================================================== */
@media (min-width: 981px) {
  .driver-art-wrap {
    right: calc(0.4% + 90px + 1.1cm - var(--driver-wrap-right-adjust, 0px));
  }
}
/* ==========================================================================
   V30 — top-anchored faint driver backdrop
   The faded portrait begins at the top edge. It no longer enlarges around the
   center; any excess is allowed to continue below the scene and be clipped.
   ========================================================================== */
.driver-backdrop-art {
  top: 0;
  height: 116%;
  object-fit: contain;
  object-position: center top;
  transform: translate3d(6%, 0, 0) scale(1);
  transform-origin: 50% 0%;
  animation: backdropInTop .9s cubic-bezier(.18,.82,.2,1) both;
}
.driver-color-world.is-exiting .driver-backdrop-art {
  animation: backdropOutTop .38s ease-in forwards;
}
@keyframes backdropInTop {
  from {
    opacity: 0;
    transform: translate3d(140px, -10px, 0) scale(1.035);
  }
  to {
    opacity: .22;
    transform: translate3d(6%, 0, 0) scale(1);
  }
}
@keyframes backdropOutTop {
  to {
    opacity: 0;
    transform: translate3d(-80px, -5px, 0) scale(.985);
  }
}
/* ==========================================================================
   V39 — square DRIVER BACKGROUND art (14–31), no crop
   ========================================================================== */
.skill-icon.is-driver.is-contain {
  padding: 0;
  overflow: hidden;
}
.skill-icon.is-driver.is-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none;
}
#modalVehicle .vehicle-logo-text { font-size: 1em; }
/* ========================================================================== 
   V45 — General layout, navigation, tutorial and download refinements
   ========================================================================== */

/* Move the complete driver/map counters, timer bars and AUTO controls to the
   right side, leaving a safe lane before the vertical thumbnail selectors. */
@media (min-width: 981px) {
  .driver-progress,
  .map-progress {
    left: auto !important;
    right: calc(104px + 2.2vw) !important;
    bottom: 10px !important;
    justify-content: flex-end;
  }
}
/* Header icons stay readable inside their dark icon boxes. */
.main-nav .nav-icon {
  color: #fff !important;
}
.main-nav .nav-icon svg,
.main-nav .nav-icon svg * {
  stroke: #fff !important;
  fill: none !important;
}
.top-download .download-mark::after {
  content: "↓" !important;
  transform: none !important;
  font-size: 1.25rem !important;
  color: #fff !important;
}
/* Tutorial labels and long scene titles. */
.tutorial-tabs button {
  white-space: normal;
  line-height: 1.08;
}
.tutorial[data-tutorial-level="master"] .section-heading h2 {
  font-size: clamp(2.55rem, 5vw, 5.7rem);
  max-width: 1100px;
  margin-inline: auto;
}
/* Keep the logo and download buttons untouched; raise only the middle title. */
.download-copy {
  transform: translateY(-58px);
}
.download-requirements {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 2.2%;
  transform: translateX(-50%);
  width: min(980px, 82vw);
  padding: 11px 18px 12px;
  color: #27231f;
  background: linear-gradient(105deg, rgba(255,255,255,.91), rgba(244,238,226,.86));
  border-top: 3px solid #ef7d18;
  box-shadow: 0 12px 32px rgba(31,18,8,.16), inset 0 1px 0 rgba(255,255,255,.75);
  clip-path: polygon(1.4% 0, 100% 0, 98.6% 100%, 0 100%);
  text-align: center;
  backdrop-filter: blur(7px);
}
.download-requirements > strong {
  display: block;
  margin-bottom: 7px;
  color: #bd4c0f;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: .95rem;
  letter-spacing: 2.3px;
}
.download-requirements ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 6px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.download-requirements li {
  position: relative;
  padding-left: 12px;
  color: #3c3935;
  font: 800 .69rem/1.25 Arial, sans-serif;
  letter-spacing: .15px;
  text-align: left;
}
.download-requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 6px;
  height: 6px;
  background: #ef7d18;
  transform: rotate(45deg);
}
.download-requirements .requirement-size {
  grid-column: 4;
  color: #171513;
  font-size: .76rem;
}
/* ========================================================================== 
   V46 — requested final placement, header arrow and compact download layout
   ========================================================================== */

/* Put the full driver/map control group at the far right with an exact
   two-centimetre breathing gap from the viewport edge. */
@media (min-width: 981px) {
  .driver-progress,
  .map-progress {
    left: auto !important;
    right: 2cm !important;
    bottom: 9px !important;
    justify-content: flex-end;
  }
}
/* One clean, upright and centred download arrow. */
.top-download .download-mark {
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  font-size: 0 !important;
  transform: none !important;
}
.top-download .download-mark::before,
.top-download .download-mark::after {
  content: none !important;
  display: none !important;
}
.top-download .download-mark svg {
  width: 21px;
  height: 21px;
  display: block;
  overflow: visible;
  transform: none !important;
}
.top-download .download-mark svg path {
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topbar.is-compact .top-download .download-mark svg {
  width: 18px;
  height: 18px;
}
/* Keep the requested tutorial title on one line at desktop widths. */
.tutorial[data-tutorial-level="master"] .section-heading h2 {
  width: max-content;
  max-width: min(94vw, 1180px);
  margin-inline: auto;
  font-size: clamp(2.15rem, 3.7vw, 4.85rem);
  white-space: nowrap;
}
/* Restore the original download scene composition and keep the requirements
   as a smaller, tighter panel in the same lower-centre location. */
.download-copy {
  transform: none !important;
}
.download-requirements {
  left: 50%;
  bottom: 1.65%;
  width: min(730px, 68vw);
  padding: 8px 14px 9px;
  border-top-width: 2px;
  clip-path: polygon(1.2% 0, 100% 0, 98.8% 100%, 0 100%);
  box-shadow: 0 9px 23px rgba(31,18,8,.14), inset 0 1px 0 rgba(255,255,255,.72);
}
.download-requirements > strong {
  margin-bottom: 5px;
  font-size: .78rem;
  letter-spacing: 2px;
}
.download-requirements ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 12px;
}
.download-requirements li {
  padding-left: 10px;
  font-size: .61rem;
  line-height: 1.18;
}
.download-requirements li::before {
  top: .38em;
  width: 5px;
  height: 5px;
}
.download-requirements .requirement-size {
  grid-column: auto;
  font-size: .66rem;
}
/* ========================================================================== 
   V47 — final control placement, tutorial title parity and download mirrors
   ========================================================================== */

/* Move the driver/map AUTO control group farther right while retaining a
   visible one-centimetre safety gap from the viewport edge. */
@media (min-width: 981px) {
  .driver-progress,
  .map-progress {
    left: auto !important;
    right: 1cm !important;
    bottom: 9px !important;
    justify-content: flex-end;
  }
}
/* Use the same font size as the other tutorial headings. Horizontal
   compression keeps the longer title on one line without reducing its height. */
.tutorial[data-tutorial-level="master"] .section-heading h2 {
  display: inline-block;
  width: max-content;
  max-width: none;
  margin-inline: auto;
  font-size: clamp(3.8rem,6vw,6.6rem) !important;
  line-height: .86;
  white-space: nowrap !important;
  transform: scaleX(.82);
  transform-origin: center center;
}
/* One primary download followed by three evenly arranged mirror links. */
.download-buttons {
  width: 100%;
}
.mirror-links {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
}
.mirror-links .mirror {
  min-width: 0;
  min-height: 52px;
  padding: 10px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 1.05;
}
.mirror-links .mirror span {
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: .72rem;
  letter-spacing: .55px;
  white-space: nowrap;
}
.mirror-links .mirror small {
  font: 700 .48rem/1 Arial,sans-serif;
  letter-spacing: .8px;
  opacity: .68;
}
/* ========================================================================== 
   V50 — publisher rights strip and ordered publisher/rating marks
   ========================================================================== */
.credits-legal.credits-publisher-strip {
  min-height: 82px;
  margin-top: 9px;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: minmax(250px, 305px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.credits-publisher-logos {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 7px;
}
.credits-legal.credits-publisher-strip .credits-mark {
  display: block;
  width: auto;
  max-width: 64px;
  height: 42px;
  max-height: 42px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}
.credits-legal.credits-publisher-strip .credits-mark-activision { max-width: 69px; height: 24px; }
.credits-legal.credits-publisher-strip .credits-mark-luxoflux { max-width: 72px; height: 34px; }
.credits-legal.credits-publisher-strip .credits-mark-privacy { max-width: 42px; height: 42px; }
.credits-legal.credits-publisher-strip .credits-mark-teen { max-width: 54px; height: 42px; }
.credits-rights-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 2px;
}
.credits-legal.credits-publisher-strip .credits-rights-copy p {
  margin: 0;
  color: #c8beb5;
  font: 600 .54rem/1.23 Arial, sans-serif;
  letter-spacing: .02px;
}
/* ========================================================================== 
   V51 — definitive Credits publisher strip and compact rights copy
   ========================================================================== */
.credits-legal.credits-publisher-strip#creditsRightsStrip {
  width: min(1240px,90vw);
  min-height: 82px;
  margin: 9px auto 0;
  padding: 8px 16px;
  display: grid;
  grid-template-columns: minmax(245px,290px) minmax(0,1fr);
  align-items: center;
  gap: 16px;
}
#creditsRightsStrip .credits-publisher-logos {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  align-items: center;
  justify-items: center;
  gap: 8px;
}
#creditsRightsStrip .credits-mark {
  display: block !important;
  width: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
}
#creditsRightsStrip .credits-mark-activision { max-width: 68px !important; height: 24px !important; }
#creditsRightsStrip .credits-mark-luxoflux { max-width: 68px !important; height: 34px !important; }
#creditsRightsStrip .credits-mark-privacy { max-width: 34px !important; height: 47px !important; }
#creditsRightsStrip .credits-mark-teen { max-width: 68px !important; height: 34px !important; }
#creditsRightsStrip .credits-rights-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 2px;
}
#creditsRightsStrip .credits-rights-copy p {
  margin: 0 !important;
  color: #c8beb5 !important;
  font: 600 .53rem/1.23 Arial,sans-serif !important;
  letter-spacing: .01px;
}
/* ========================================================================== 
   V52 — enlarged publisher marks, protected rights copy, and branded footer
   ========================================================================== */
.credits-legal.credits-publisher-strip#creditsRightsStrip {
  width: min(1280px, 92vw) !important;
  min-height: 128px !important;
  margin: 9px auto 0 !important;
  padding: 10px 22px 8px !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 410px) minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  column-gap: 32px !important;
  row-gap: 8px !important;
  overflow: visible !important;
}
#creditsRightsStrip .credits-publisher-logos {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-items: center !important;
  gap: 11px !important;
}
#creditsRightsStrip .credits-mark {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 4px 5px rgba(0,0,0,.22)) !important;
}
#creditsRightsStrip .credits-mark-activision { width: 112px !important; height: 37px !important; }
#creditsRightsStrip .credits-mark-luxoflux { width: 106px !important; height: 53px !important; }
#creditsRightsStrip .credits-mark-privacy { width: 60px !important; height: 82px !important; }
#creditsRightsStrip .credits-mark-teen { width: 102px !important; height: 57px !important; }
#creditsRightsStrip .credits-rights-copy {
  min-width: 0 !important;
  padding-left: 10px !important;
  display: grid !important;
  align-content: center !important;
  gap: 3px !important;
  text-align: left !important;
}
#creditsRightsStrip .credits-rights-copy p {
  margin: 0 !important;
  color: #d1c8c0 !important;
  font: 600 .55rem/1.28 Arial, sans-serif !important;
  letter-spacing: .015px !important;
}
#creditsRightsStrip .credits-brand-footer {
  grid-column: 1 / -1 !important;
  min-width: 0 !important;
  padding-top: 7px !important;
  border-top: 1px solid rgba(255,255,255,.13) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}
#creditsRightsStrip .credits-brand-footer p {
  margin: 0 !important;
  font-family: Arial, sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}
#creditsRightsStrip .credits-asset-credit {
  color: #f0e8df !important;
  font-size: .62rem !important;
  letter-spacing: .18px !important;
  text-align: left !important;
}
#creditsRightsStrip .credits-asset-credit strong {
  color: #ffb51c !important;
  font: inherit !important;
  letter-spacing: .32px !important;
}
#creditsRightsStrip .credits-rights-signoff {
  color: #ffb51c !important;
  font-size: .64rem !important;
  letter-spacing: .72px !important;
  text-align: right !important;
  text-transform: uppercase !important;
}
#creditsRightsStrip .credits-rights-signoff span {
  color: rgba(255,255,255,.48) !important;
  margin-inline: 3px !important;
}
/* ========================================================================== 
   V53 — SOCIAL contact scene and improved Credits legal readability
   ========================================================================== */
.social {
  position: relative;
  min-height: calc(100vh - 58px);
  padding-top: clamp(78px, 8vh, 108px);
  padding-bottom: clamp(28px, 4vh, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: #f7f3ed;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,180,35,.18), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(30,184,224,.18), transparent 34%),
    linear-gradient(128deg,#12171d 0%,#0b1015 50%,#17120f 100%);
}
.social::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -22% 48% -30% -18%;
  transform: skewX(-13deg);
  background: linear-gradient(145deg,rgba(255,195,35,.96),rgba(255,91,24,.78));
  opacity: .92;
}
.social::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(112deg,transparent 0 75px,rgba(255,255,255,.025) 76px 77px),
    radial-gradient(circle at 78% 18%,rgba(255,255,255,.08) 0 2px,transparent 3px);
  background-size: auto, 24px 24px;
}
.social .scene-panel { left: 54%; right: -12%; top: -22%; bottom: -26%; }
.social .scene-ghost { left: -2vw; top: 5%; color: rgba(255,255,255,.055); }
.social .scene-halftone { width: 64vw; }
.social-header,
.social-grid {
  position: relative;
  z-index: 5;
  width: min(1240px, 90vw);
  margin-inline: auto;
}
.social-header {
  max-width: 920px;
  margin-left: max(5vw,calc((100vw - 1240px)/2));
  margin-right: auto;
}
.social-header .section-eyebrow {
  color: #17120f;
  text-shadow: 0 1px 0 rgba(255,255,255,.22);
}
.social-header h2 {
  margin: 0;
  color: #f7f3ed;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(5.6rem, 10vw, 10rem);
  line-height: .78;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 4px 5px 0 rgba(0,0,0,.26);
}
.social-header > p:last-child {
  max-width: 700px;
  margin: 15px 0 0;
  color: rgba(248,242,234,.76);
  font-size: .94rem;
  line-height: 1.55;
}
.social-crest {
  position: absolute;
  z-index: 1;
  right: -2vw;
  top: 15%;
  color: rgba(255,255,255,.035);
  font: 900 clamp(8rem,19vw,22rem)/.72 Impact,"Arial Narrow Bold",sans-serif;
  letter-spacing: -6px;
  transform: rotate(-7deg);
  pointer-events: none;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
  margin-top: clamp(22px,3vh,36px);
}
.social-card {
  --social-accent: #ffc51f;
  position: relative;
  min-height: 338px;
  padding: 27px 25px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(155deg,rgba(255,255,255,.08),transparent 38%),
    linear-gradient(145deg,rgba(22,28,34,.98),rgba(8,12,16,.96));
  clip-path: polygon(15px 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,0 100%,0 15px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08),0 16px 34px rgba(0,0,0,.24);
}
.social-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg,var(--social-accent),transparent 88%);
}
.social-card::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border: 18px solid color-mix(in srgb,var(--social-accent) 24%,transparent);
  border-radius: 50%;
}
.social-card-infinity { --social-accent: #20c2e6; }
.social-card-community { --social-accent: #ff7418; }
.social-number {
  position: absolute;
  right: 14px;
  top: 6px;
  color: rgba(255,255,255,.06);
  font: 900 5.4rem/.9 Impact,"Arial Narrow Bold",sans-serif;
}
.social-card-heading { position: relative; z-index: 2; min-height: 156px; }
.social-card-heading small {
  color: var(--social-accent);
  font: 900 .74rem/1 Arial,sans-serif;
  letter-spacing: 1.8px;
}
.social-card-heading h3 {
  margin: 9px 0 10px;
  color: #fff;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(2.18rem,2.8vw,3.2rem);
  line-height: .9;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.social-card-heading p {
  max-width: 92%;
  margin: 0;
  color: rgba(239,242,244,.66);
  font-size: .86rem;
  line-height: 1.52;
}
.social-links {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: grid;
  gap: 8px;
}
.social-link {
  min-height: 57px;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  color: #f7f7f7;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  text-decoration: none;
  transition: transform .2s ease,border-color .2s ease,background .2s ease;
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateX(4px);
  border-color: color-mix(in srgb,var(--social-accent) 70%,white 10%);
  background: color-mix(in srgb,var(--social-accent) 13%,rgba(255,255,255,.035));
}
.social-link-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--social-accent);
  border: 1px solid color-mix(in srgb,var(--social-accent) 48%,transparent);
  background: rgba(3,7,10,.74);
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.social-link-icon svg { width: 25px; height: 25px; fill: currentColor; }
.social-link-icon .social-icon-cut { fill: #0a0e12; stroke: none; }
.social-link-icon .social-icon-line { fill: none; stroke: #0a0e12; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-link > span:last-child { min-width: 0; display: flex; flex-direction: column; }
.social-link small {
  color: rgba(255,255,255,.48);
  font: 800 .57rem/1 Arial,sans-serif;
  letter-spacing: 1.25px;
}
.social-link b {
  min-width: 0;
  margin-top: 5px;
  overflow: hidden;
  color: #fff;
  font: 900 .82rem/1.05 Arial,sans-serif;
  letter-spacing: .25px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.scene-engine-ready .social.scene-entering .social-card { animation: cardIn .58s cubic-bezier(.16,.84,.2,1) both; }
body.scene-engine-ready .social.scene-entering .social-card:nth-child(2) { animation-delay: .08s; }
body.scene-engine-ready .social.scene-entering .social-card:nth-child(3) { animation-delay: .16s; }
/* The legal publisher copy was too small in V52. */
#creditsRightsStrip .credits-rights-copy p {
  font-size: .68rem !important;
  line-height: 1.38 !important;
  letter-spacing: .02px !important;
}
/* ==========================================================================
   V54 — Larger SOCIAL cards, contact buttons and readable descriptions
   ========================================================================== */
.social-card-heading small { font-size: .74rem; }
.social-card-heading p { font-size: .86rem; line-height: 1.52; }
.social-link { min-height: 57px; grid-template-columns: 42px minmax(0,1fr); padding: 8px 12px; gap: 12px; }
.social-link-icon { width: 42px; height: 42px; }
.social-link-icon svg { width: 25px; height: 25px; }
.social-link small { font-size: .57rem; }
.social-link b { font-size: .82rem; line-height: 1.05; }
/* ========================================================================== 
   V57 — Home right-side artwork + video playback refinements
   ========================================================================== */
.hero-right-image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(190,183,169,0) 0%, rgba(14,14,13,.08) 19%, rgba(9,10,11,.12) 100%),
    url('assets/backgrounds/hero-chico-v57.jpg') center center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 10%, #000 27%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 10%, #000 27%, #000 100%);
  opacity: .96;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
  transform-origin: center right;
  animation: v57HeroRightDrift 16s ease-in-out infinite alternate;
}
@keyframes v57HeroRightDrift {
  from { background-position: 47% center; transform: scale(1.015); }
  to   { background-position: 54% center; transform: scale(1.055); }
}
.news-shot-sheen {
  transition: opacity .2s ease;
}
.news-slide.is-video-playing .news-shot-sheen {
  opacity: 0;
  animation-play-state: paused;
}
.news-slide.has-video .news-slide-caption h3 {
  text-transform: none;
}
/* ========================================================================== 
   V58 — Remove the slanted road panel + hard-stop video sheen while playing
   ========================================================================== */
.hero-poster .poster-road {
  display: none !important;
}
.news-slide.is-video-playing .news-shot-sheen,
.news-shot-sheen[hidden] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  animation: none !important;
  transform: none !important;
}
/* ========================================================================== 
   V59 — MORE INFORMATION PANELS + NEW UPDATE VIDEO
   ========================================================================== */

.news-showcase {
  height: clamp(520px, 66vh, 650px);
}
.news-slide {
  display: flex;
  flex-direction: column;
}
.news-more-row,
.tutorial-more-row {
  position: relative;
  z-index: 7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px 15px;
  background:
    linear-gradient(90deg, rgba(255,77,16,.13), transparent 24% 76%, rgba(255,177,20,.12)),
    linear-gradient(180deg, #171513, #0d0d0d);
  border-top: 1px solid rgba(255,255,255,.1);
}
.more-information-button {
  position: relative;
  min-width: 210px;
  min-height: 42px;
  padding: 11px 28px 10px;
  border: 1px solid rgba(255,197,50,.72);
  color: #111;
  background: linear-gradient(110deg, #ffd629 0%, #ff9c12 62%, #ff5b12 100%);
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
  box-shadow:
    0 10px 22px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.72);
  font: 950 .72rem/1 Arial,sans-serif;
  letter-spacing: 1.7px;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.more-information-button::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: rgba(20,15,8,.5);
  transform: scaleX(.36);
  transform-origin: center;
  transition: transform .18s ease;
}
.more-information-button:hover,
.more-information-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.12) brightness(1.04);
  box-shadow: 0 14px 30px rgba(0,0,0,.42), 0 0 24px rgba(255,141,16,.22);
  outline: none;
}
.more-information-button:hover::after,
.more-information-button:focus-visible::after {
  transform: scaleX(1);
}
.news-slide.is-prev .news-more-row,
.news-slide.is-next .news-more-row {
  opacity: .88;
}
.news-slide.is-far-left .more-information-button,
.news-slide.is-far-right .more-information-button {
  pointer-events: none;
}
.tutorial-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tutorial-card-media {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}
.tutorial-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tutorial-card-media h3 {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 58px 18px 15px;
  color: #fff;
  background: linear-gradient(transparent,rgba(0,0,0,.9));
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  letter-spacing: .8px;
}
.tutorial-more-row {
  flex: 0 0 auto;
  padding: 13px 15px 16px;
}
.tutorial-more-row .more-information-button {
  width: min(245px, 92%);
}
body.information-modal-open {
  overflow: hidden;
}
.information-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2,5,8,.9);
  backdrop-filter: blur(12px) saturate(.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.information-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.information-panel {
  --information-accent: #ff9e16;
  position: relative;
  width: min(1040px, 96vw);
  height: min(92vh, 900px);
  max-height: min(92vh, 900px);
  display: grid;
  grid-template-rows: minmax(230px, 30vh) minmax(0,1fr);
  overflow: hidden;
  color: #f5f1ea;
  background:
    linear-gradient(115deg, rgba(255,92,18,.08), transparent 42%),
    #0d1115;
  border: 1px solid rgba(255,177,35,.65);
  clip-path: polygon(20px 0,100% 0,100% calc(100% - 20px),calc(100% - 20px) 100%,0 100%,0 20px);
  box-shadow: 0 38px 110px rgba(0,0,0,.78), inset 0 1px 0 rgba(255,255,255,.16);
  transform: translateY(22px) scale(.975);
  transition: transform .3s cubic-bezier(.16,.84,.2,1);
  isolation: isolate;
}
.information-modal.is-open .information-panel {
  transform: translateY(0) scale(1);
}
.information-panel::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  border-top: 5px solid #ff5a13;
  background:
    linear-gradient(115deg, transparent 0 71%, rgba(255,165,18,.09) 71.2% 76%, transparent 76.2%),
    repeating-linear-gradient(120deg, transparent 0 74px, rgba(255,255,255,.025) 74px 76px);
}
.information-backdrop {
  position: relative;
  grid-row: 1;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.04);
}
.information-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,11,.18), rgba(5,8,11,.45)),
    linear-gradient(180deg, rgba(5,8,11,.08) 0%, rgba(5,8,11,.2) 48%, #0d1115 100%);
}
.information-backdrop::after {
  content: "";
  position: absolute;
  right: 7%;
  top: -35%;
  width: 125px;
  height: 180%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(255,210,33,.72), rgba(255,76,15,.38));
  opacity: .32;
  box-shadow: 0 0 0 18px rgba(0,0,0,.22);
}
.information-heading {
  position: absolute;
  z-index: 7;
  left: clamp(24px,5vw,58px);
  right: clamp(64px,8vw,96px);
  top: clamp(42px,8vh,88px);
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.75);
}
.information-kicker {
  margin: 0 0 10px;
  color: #ffc224;
  font: 950 .72rem/1 Arial,sans-serif;
  letter-spacing: 2.4px;
}
.information-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(2rem,4vw,4.25rem);
  line-height: .95;
  letter-spacing: .8px;
}
.information-close {
  position: absolute;
  z-index: 12;
  top: 16px;
  right: 17px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,211,76,.72);
  color: #fff;
  background: rgba(8,12,16,.84);
  box-shadow: 0 12px 26px rgba(0,0,0,.36);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.information-close:hover,
.information-close:focus-visible {
  transform: rotate(5deg) scale(1.04);
  background: #e84912;
  outline: none;
}
.information-scroll {
  position: relative;
  z-index: 6;
  grid-row: 2;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(28px,4vw,46px) clamp(25px,5vw,62px) clamp(38px,5vw,62px);
  scrollbar-width: thin;
  scrollbar-color: #ff9f17 #171b1f;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,127,14,.13), transparent 30%),
    linear-gradient(180deg,#0d1115,#080b0e);
  font-size: clamp(.97rem,1.25vw,1.08rem);
  line-height: 1.78;
}
.information-scroll::-webkit-scrollbar { width: 10px; }
.information-scroll::-webkit-scrollbar-track { background: #171b1f; }
.information-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(#ffc425,#ff5a12);
  border: 2px solid #171b1f;
}
.information-scroll h3 {
  margin: 0 0 20px;
  color: #fff;
  font-family: Impact,"Arial Narrow Bold",sans-serif;
  font-size: clamp(1.75rem,3vw,2.8rem);
  line-height: 1.02;
  letter-spacing: .7px;
}
.information-scroll h4 {
  margin: 26px 0 14px;
  color: #ffc224;
  font-size: 1.05rem;
  letter-spacing: .3px;
}
.information-scroll p {
  margin: 0 0 20px;
  color: #dce1e4;
}
.information-scroll ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.information-scroll li {
  position: relative;
  margin: 0;
  padding: 13px 16px 13px 36px;
  color: #eef1f2;
  background: linear-gradient(90deg, rgba(255,141,17,.11), rgba(255,255,255,.025));
  border-left: 3px solid #ff9c16;
}
.information-scroll li::before {
  content: "•";
  position: absolute;
  left: 17px;
  top: 11px;
  color: #ffc224;
  font-size: 1.2rem;
}
.information-scroll a {
  color: #ffc224;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
/* ========================================================================== 
   V60 — Responsive NEWS cards + clean information typography
   Keeps the existing section artwork, headings, tabs and animations intact.
   ========================================================================== */

/* Desktop/tablet NEWS card system rebuilt around the real viewport space. */
.news-showcase {
  height: 100%;
  min-height: 0;
}
.news-slide {
  top: clamp(8px, 1.45vh, 16px);
  width: min(620px, 58vw);
  display: flex;
  flex-direction: column;
}
.news-slide.is-current {
  left: 50%;
  transform: translate3d(-50%,0,0) scale(1);
}
.news-slide.is-prev {
  left: 8%;
  transform: translate3d(-50%,7%,0) scale(.66);
}
.news-slide.is-next {
  left: 92%;
  transform: translate3d(-50%,7%,0) scale(.66);
}
.news-shot-frame {
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
}
.news-slide-caption {
  flex: 0 0 auto;
  min-height: 84px;
  padding: 10px 20px 12px;
  display: grid;
  grid-template-rows: auto minmax(0,1fr) auto;
  align-content: center;
}
.news-slide-caption span {
  font-size: .62rem;
  letter-spacing: 1.8px;
}
.news-slide-caption h3 {
  margin: 5px 0 4px;
  font-size: clamp(1.12rem, 1.4vw, 1.42rem);
  line-height: 1.05;
  text-wrap: balance;
}
.news-more-row {
  flex: 0 0 56px;
  min-height: 56px;
  padding: 8px 14px 10px;
}
.news-more-row .more-information-button {
  min-width: 192px;
  min-height: 38px;
  padding: 9px 22px 8px;
  font-size: .67rem;
  letter-spacing: 1.35px;
}
/* Keep arrows vertically centered on the smaller, complete card. */
.news-arrow {
  top: 40%;
}
/* Information window: the header is now a proper grid layer instead of an
   absolutely positioned block that can spill into the article text. */
.information-panel {
  width: min(1000px, 94vw);
  height: min(88svh, 840px);
  max-height: min(88svh, 840px);
  grid-template-rows: minmax(190px, 25vh) minmax(0,1fr);
}
.information-heading {
  position: relative;
  grid-row: 1;
  align-self: end;
  z-index: 7;
  left: auto;
  right: auto;
  top: auto;
  width: 100%;
  min-width: 0;
  padding: 48px clamp(72px, 8vw, 96px) 24px clamp(28px, 5vw, 56px);
  overflow: hidden;
  pointer-events: none;
}
.information-kicker {
  margin-bottom: 8px;
  font-size: .68rem;
  letter-spacing: 2.1px;
}
.information-heading h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.7rem, 2.55vw, 2.85rem);
  line-height: 1.01;
  letter-spacing: .45px;
  text-wrap: balance;
  overflow-wrap: normal;
}
.information-scroll {
  padding-top: clamp(26px, 3vw, 38px);
  font-size: clamp(.96rem, 1.08vw, 1.05rem);
  line-height: 1.72;
}
.information-scroll h3 {
  margin: 0 0 18px;
  max-width: 880px;
  font-size: clamp(1.35rem, 1.8vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: .35px;
  text-wrap: balance;
}
/* Short desktop windows receive a further proportional reduction instead of
   clipping the action row below the visible scene. */
@media (min-width: 901px) and (max-height: 790px) {
  .news-slide {
    width: min(570px, 55vw);
    top: 6px;
  }
  .news-slide-caption {
    min-height: 76px;
    padding: 8px 18px 10px;
  }
  .news-slide-caption h3 {
    font-size: clamp(1rem, 1.28vw, 1.27rem);
  }
  .news-more-row {
    flex-basis: 50px;
    min-height: 50px;
    padding: 6px 12px 8px;
  }
  .news-more-row .more-information-button {
    min-height: 35px;
    padding-block: 8px 7px;
  }
}
/* =====================================================================
   YOUTUBE EMBED — news carousel
   ===================================================================== */
.news-youtube-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-youtube-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.news-youtube-wrap:hover .news-youtube-thumb {
  transform: scale(1.04);
  filter: brightness(.75);
}
.news-youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 72px;
  height: 52px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform .2s ease, filter .2s ease;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.7));
}
.news-youtube-play:hover {
  transform: translate(-50%, -50%) scale(1.14);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.9));
}
.news-youtube-play svg {
  width: 100%;
  height: 100%;
}
.news-youtube-play .yt-play-bg {
  fill: #ff0000;
  transition: fill .2s ease;
}
.news-youtube-play:hover .yt-play-bg {
  fill: #cc0000;
}
.news-youtube-play .yt-play-arrow {
  fill: #fff;
}
.news-youtube-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   Moved to the end of the stylesheet so mobile/tablet breakpoints always win
   the cascade over base rules declared later in the file (equal specificity,
   source order decides). Internal order between media blocks is unchanged.
   ========================================================================== */

@media (max-width: 1260px) {
  .main-nav a { min-width: 102px; padding-right: 9px; }
  .nav-copy small { display: none; }
  .top-download { min-width: 174px; }
  .driver-copy { left: 2%; width: 39vw; }
  .driver-art-wrap { left: 37%; right: 10%; }
  .driver-selector { right: .6%; }
}
@media (max-width: 1050px) {
  .main-nav { gap: 4px; margin-left: 1vw; }
  .main-nav a { min-width: 48px; width: 48px; padding: 0; justify-content: center; }
  .nav-copy { display: none; }
  .top-download { min-width: 165px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-poster { position: absolute; right: -15%; opacity: .33; width: 70%; z-index: -1; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .news-card:last-child { grid-column: span 2; }
  .driver-copy h2 { font-size: clamp(4.5rem,8vw,7rem); }
  .driver-copy { width: 42vw; }
  .driver-art-wrap { left: 38%; }
  .creator { grid-template-columns: 1fr; }
  .creator-art { display: none; }
  .download-inner { grid-template-columns: .7fr 1fr; }
  .download-buttons { grid-column: 2; }
  .download-diagonal { inset: -20% 66% -20% -25%; }
}
@media (max-width: 820px) {
  .topbar { --header-h: 68px; }
  .topbar.is-compact { --header-h: 56px; }
  .brand { width: 115px; height: 60px; }
  .brand img { width: 110px; height: 60px; }
  .top-download { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px 18px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: auto;
    background: rgba(5,8,12,.98);
    transform: translateY(-145%);
    transition: .3s;
    z-index: -1;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { width: 100%; min-width: 0; height: 54px; justify-content: flex-start; padding: 0 12px; }
  .nav-copy { display: flex; }
  .nav-copy small { display: block; }
  .hero { padding-top: 68px; }
  .hero-copy { padding-top: 10vh; }
  .hero-logo { width: 90%; }
  .hero-poster { right: -38%; width: 100%; }
  .section-shell { padding: 80px 5vw; }
  .news-tabs { position: relative; top: auto; right: auto; margin-top: 22px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:last-child { grid-column: auto; }

  .drivers { height: auto; min-height: 1080px; }
  .driver-copy { top: 5%; left: 5%; width: 76%; }
  .driver-copy h2 { font-size: clamp(4.4rem,15vw,7rem); max-width: 80vw; }
  .driver-kicker { font-size: 1rem; }
  .driver-tagline { max-width: 70vw; }
  .driver-art-wrap { left: 8%; right: 14%; top: 37%; height: 63%; }
  .driver-art-wrap img { height: 100%; }
  .driver-color-world { left: 16%; top: 33%; }
  .driver-slash { top: 25%; }
  .slash-cyan { left: 23%; }.slash-white { left: 24.5%; }.slash-accent { left: 27%; }
  .driver-selector { top: 44%; right: 1%; height: 48%; width: 72px; }
  .driver-progress { left: 5%; bottom: 12px; }
  .driver-ghost { top: 34%; font-size: 10rem; }
  .skill-list { width: 370px; }
  .skill { min-height: 64px; grid-template-columns: 64px 1fr; }
  .skill-icon { width: 64px; height: 64px; }
  .view-profile { width: 245px; min-height: 48px; }

  .creator { min-height: auto; }
  .tutorial-grid { grid-template-columns: repeat(2,1fr); }
  .feature-card { min-width: 86%; }
  .download-inner { grid-template-columns: 1fr; padding: 70px 0; }
  .download-inner > img { max-width: 300px; }
  .download-buttons { grid-column: auto; }
  .download-diagonal { inset: -10% 55% 55% -30%; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer img { margin: auto; }
  .profile-card { grid-template-columns: 1fr; max-height: 94vh; overflow: auto; min-height: 0; }
  .profile-visual-stage { min-height: 470px; }
  #modalImage { left: 4%; width: 60%; height: 94%; }
  .modal-vehicle-gallery { right: 1%; bottom: 4%; width: 54%; height: 36%; }
  .modal-weapon-card { right: 3%; top: 4%; width: 130px; min-height: 155px; grid-template-rows: auto 87px auto; }
  #modalWeaponImage { height: 87px; }
  .profile-info-panel { padding: 30px 28px 34px !important; }
  .profile-card h2 { font-size: 3rem; }
}
@media (max-width: 540px) {
  .main-nav { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .action { width: 100%; }
  .section-heading h2,.creator-copy h2,.download h2 { font-size: 3.4rem; }
  .news-tabs { overflow: auto; }
  .tab { padding: 14px 22px; white-space: nowrap; }
  .drivers { min-height: 1040px; }
  .driver-copy { width: 88%; }
  .driver-copy h2 { font-size: 4.2rem; }
  .skill-list { width: calc(100vw - 110px); }
  .skill h4 { font-size: .98rem; }
  .skill p { display: none; }
  .view-profile { width: calc(100vw - 110px); }
  .driver-art-wrap { left: -2%; right: 16%; top: 41%; height: 59%; }
  .driver-color-world { left: 4%; top: 38%; }
  .driver-selector { width: 62px; top: 48%; height: 43%; }
  .driver-progress small { display: none; }
  .tutorial-grid { grid-template-columns: 1fr; }
  .tutorial-tabs { overflow: auto; }
  .feature-stage { padding: 12px 40px; }
  .feature-card { min-width: 96%; }
  .feature-caption h3 { font-size: 1.35rem; }
  .feature-caption p { font-size: .8rem; }
  .creator-points { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
@media (max-width: 1050px) {
  .topbar { height: 72px; }
  .brand { width: 126px; height: 68px; }
  .brand img { width: 118px; height: 66px; }
  .main-nav {
    justify-content: flex-start;
  }
  .main-nav a { min-width: 54px; width: 54px; padding: 0; justify-content: center; }
  .nav-copy { display: none; }
  .top-download { min-width: 58px; width: 58px; padding: 0; justify-content: center; }
  .top-download > span:last-child { display: none; }
  .feature-card { min-width: 78%; }
}
@media (max-width: 780px) {
  .main-nav {
    background: linear-gradient(155deg,#171b21,#080b0f);
    border: 1px solid rgba(255,135,16,.28);
  }
  .main-nav a { width: 100%; min-width: 0; justify-content: flex-start; padding: 0 14px; }
  .main-nav a .nav-copy { display: flex; }
  .top-download { display: none; }
  .news-tabs { position: relative; top: auto; right: auto; margin-top: 26px; }
  .section-heading { padding-left: 18px; }
  .feature-stage { padding: 20px 44px; }
  .feature-card { min-width: 92%; }
}
@media (prefers-reduced-motion: reduce) {
  .news::before,.tutorial::before,.features::before,.news::after,.tutorial::after,.features::after,
  .section-shell:not(.creator) .brush,.hero-bg,.hero::before,.hero-speed,.hero-logo,.hero-poster::before,
  .poster-ring,.poster-road,.creator::before,.creator::after,.creator-collage::before,.creator-collage::after,
  .download::before,.download-diagonal,.download-inner > img { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) { .v6-embers { display: none; } }
@media (max-width: 1050px) {
  .feature-stage { padding-inline: 70px; }
  .feature-card { flex-basis: min(760px, 76vw); }
  .feature-impact { width: 55vw; right: -10vw; opacity: .28; }
  .download-tire-trail { left: 17%; opacity: .46; }
}
@media (max-width: 780px) {
  .feature-stage { padding: 22px 48px 32px; }
  .feature-viewport { -webkit-mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); mask-image: linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent); }
  .feature-track { gap: 18px; }
  .feature-card { flex-basis: 82vw; }
  .feature-arrow { width: 48px; height: 64px; }
  .feature-arrow.left { left: 1px; }
  .feature-arrow.right { right: 1px; }
  .feature-arrow svg { width: 30px; height: 30px; }
  .feature-caption { padding: 92px 22px 22px; }
  .feature-impact { width: 78vw; opacity: .18; top: 14%; }
  .impact-wheel { width: 82px; border-width: 12px; }
  .download-tire-trail { left: 20%; bottom: -210px; width: 150px; opacity: .34; }
  .tire-line { width: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-impact *, .download-tire-trail, .tire-line { animation: none !important; }
}
@media (max-width: 820px) {
  .scene-panel { left: 39%; opacity: .82; }
  .scene-ghost { font-size: clamp(6rem,24vw,12rem); top: 11%; }
  .scene-slash { width: 80vw; right: -26vw; }
  .creator .scene-panel,.features .scene-panel { right: 43%; }
  .driver-selector { width: 72px; top: 50%; height: auto; }
  .driver-thumbs { grid-template-rows: repeat(4,72px); }
  .driver-thumb { width: 72px; height: 72px; }
}
@media (max-width: 540px) {
  .scene-panel { left: 31%; opacity: .75; }
  .scene-halftone { width: 80vw; }
  .driver-selector { width: 62px; top: 53%; }
  .driver-thumbs { grid-template-rows: repeat(4,62px); gap: 6px; }
  .driver-thumb { width: 62px; height: 62px; }
}
@media (prefers-reduced-motion: reduce) {
  .v8-scene-decor *, .v6-embers i { animation: none !important; }
}
@media (min-width: 901px) and (min-height: 680px) {
  body.scene-engine-ready main > .scene-section {
    min-height: calc(100vh - 58px);
    contain: layout paint style;
  }

  body.scene-engine-ready main > .hero.scene-section {
    min-height: 100vh;
  }

  body.scene-engine-ready main > .drivers.scene-section {
    height: calc(100vh - 58px);
    min-height: calc(100vh - 58px);
  }

}
@media (max-width: 900px), (max-height: 679px) {
  .scene-transition { display: none; }
  .scene-section { scroll-margin-top: 68px; }
}
@media (prefers-reduced-motion: reduce) {
  .scene-transition { display: none !important; }
  body.scene-engine-ready .scene-section [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (min-width: 1321px) {
  .main-nav { gap: 6px; margin-left: 1.2vw; }
  .main-nav a { padding-inline: 9px; }
  .top-download { min-width: 184px; padding-inline: 17px; }
}
@media (min-width: 901px) and (min-height: 680px) {
  body.scene-engine-ready main > .maps.scene-section { height: calc(100vh - 58px); min-height: calc(100vh - 58px); }
  body.scene-engine-ready main > .credits.scene-section { min-height: calc(100vh - 58px); }
}
@media (max-width: 1100px) {
  .map-info-card { width: 45vw; }
  .map-white-highlight { width: 37vw; right: 11%; }
  .map-info-card h2 { font-size: clamp(3.2rem,6.3vw,5.8rem); }
  .credits-grid { gap: 10px; }
}
@media (max-width: 820px) {
  .news-tabs { grid-template-columns: repeat(2, minmax(165px,1fr)); overflow-x: auto; }
  .maps { height: auto; min-height: 1120px; }
  .map-layout { width: 100%; }
  .map-info-card { left: 5%; top: 5%; width: 76%; padding: 16px 18px 20px; }
  .map-mini-frame { height: 180px; }
  .map-info-card h2 { font-size: clamp(3.5rem,11vw,6rem); }
  .map-white-highlight { top: 61%; left: 5%; right: auto; width: 72%; }
  .map-selector { top: 29%; right: 1.5%; width: 72px; height: 52%; }
  .map-progress { left: 5%; bottom: 18px; }
  .map-orange-world { width: 74%; right: -29%; }
  .map-ghost { bottom: 6%; font-size: 9rem; }
  .credits { padding: 86px 5vw 22px; }
  .credits-header { margin-left: 0; }
  .credits-grid { grid-template-columns: 1fr; }
  .credit-card { min-height: 150px; }
  .credits-legal { grid-template-columns: 130px 1fr; }
  .credits-legal img { width: 120px; }
  .credits-footer-strip { grid-template-columns: 105px 1fr; }
  .credits-footer-strip span { grid-column: 1 / -1; text-align: center; }
}
@media (max-width: 540px) {
  .maps { min-height: 1080px; }
  .map-info-card { width: 78%; left: 4%; }
  .map-mini-frame { height: 145px; }
  .map-description { font-size: .72rem; }
  .map-stat-grid { gap: 5px; }
  .map-stat-grid article { padding: 7px; }
  .map-white-highlight { left: 4%; width: 78%; padding: 18px 22px 20px 31px; }
  .map-selector { width: 62px; top: 31%; height: 48%; }
  .map-progress small { display: none; }
  .credits-header h2 { font-size: 4.2rem; }
  .credits-legal { grid-template-columns: 1fr; text-align: center; }
  .credits-legal img { margin: auto; }
  .credits-footer-strip { grid-template-columns: 1fr; text-align: center; }
  .credits-footer-strip img { margin: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .map-background,.map-orange-world,.map-grain,.map-speed-line,.map-ghost,.map-info-card,.map-white-highlight,.map-progress i b { animation: none !important; }
}
@media (max-width: 820px) { .news .news-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-height: 780px) {
  .credits { padding-top: 62px; padding-bottom: 12px; }
  .credits-header h2 { font-size: 5.3rem; }
  .credits-header > p:last-child { margin-top: 10px; font-size: .74rem; }
  .credits-grid { margin-top: 15px; }
  .credit-card { min-height: 142px; padding: 17px 20px; }
  .credit-card h3 { margin: 5px 0 8px; font-size: 1.75rem; }
  .credit-card p { font-size: .67rem; }
  .credits-legal { margin-top: 9px; padding-block: 8px; }
  .credits-legal img { height: 60px; }
  .credits-footer-strip { margin-top: 8px; min-height: 54px; }
  .credits-footer-strip img { height: 45px; }
}
@media (max-width: 980px) {
  .news-tire-depth { width: 80vw; opacity: .12; }
  .news-skid-curves { width: 78vw; opacity: .1; }
  .tutorial-fire-wheel { width: 58vw; right: -18vw; opacity: .42; }
  .tutorial-bottom-skids { width: 100vw; bottom: -9%; opacity: .13; }
  .download-track-wall img { width: 66vw; min-width: 500px; }
}
@media (max-width: 650px) {
  .news-tire-depth { top: 10%; width: 105vw; left: -32vw; opacity: .09; }
  .news-skid-curves { width: 105vw; right: -42vw; bottom: -7%; opacity: .08; }
  .tutorial-fire-wheel { width: 82vw; right: -42vw; top: 24%; opacity: .3; }
  .tutorial-bottom-skids { width: 138vw; bottom: -2%; opacity: .1; }
  .download-track-wall { opacity: .17; inset: -8% -32%; }
  .download-track-wall img { width: 104vw; min-width: 430px; }
  .download-track-wall .track-copy-b { left: 43%; }
  .download-track-wall .track-copy-c { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tutorial-fire-wheel-glow,
  .tutorial-fire-wheel-heat { animation: none !important; }
}
@media (max-width: 980px) {
  .download-track-wall .track-copy-b {
    left: 27% !important;
    bottom: -66% !important;
    width: 68vw !important;
    min-width: 560px !important;
    height: 220% !important;
    transform: rotate(25deg) skewX(-2deg) scaleX(.95) !important;
  }
}
@media (max-width: 650px) {
  .download-track-wall .track-copy-b {
    left: 14% !important;
    bottom: -58% !important;
    width: 112vw !important;
    min-width: 470px !important;
    height: 205% !important;
    transform: rotate(22deg) scaleX(.92) !important;
  }
}
@media (max-width: 900px), (max-height: 679px) {
  .news-showcase { width: 100%; height: 520px; margin: 26px 0 0; overflow: hidden; }
  .news-slide { width: min(760px,86vw); }
  .news-slide.is-prev { left: -8%; }
  .news-slide.is-next { left: 108%; }
  .news-arrow-prev { left: 2%; }
  .news-arrow-next { right: 2%; }
}
@media (max-width: 620px) {
  .news-showcase { height: 440px; }
  .news-slide { width: 88vw; top: 7%; }
  .news-slide.is-prev,.news-slide.is-next { opacity: .18; }
  .news-arrow { top: 40%; width: 48px; height: 74px; }
  .news-arrow-label { display: none; }
  .news-arrow svg { width: 31px; height: 31px; }
  .news-slide-caption { min-height: 82px; padding-inline: 16px; }
  .news-slide-caption h3 { font-size: 1.15rem; }
}
@media (prefers-reduced-motion: reduce) {
  .news-slide,.news-shot-frame img,.news-arrow { transition: none !important; }
  .news-shot-sheen,.news-slide-enter { animation: none !important; }
}
@media (max-width: 820px) {
  .driver-auto-toggle { min-width: 60px; height: 23px; padding: 0 6px; font-size: .52rem; }
  .driver-progress #driverAutoDelay { display: none; }
}
@media (max-width:1450px) {
  .driver-vehicle-art { left: 27%; width: min(32vw,470px); height: 27%; }
}
@media (max-width:980px) {
  .driver-vehicle-art { left: 3%; bottom: 2.5%; width: 47vw; height: 22%; opacity: .92; }
}
@media (max-width:620px) {
  .driver-vehicle-art { left: -5%; bottom: 2%; width: 58vw; height: 17%; opacity: .85; }
  .skill-icon.is-weapon { padding: 5px; }
}
@media (max-width: 980px) {
  .driver-art-wrap img { margin-right: 0; }
  .driver-vehicle-art.has-two-vehicles .vehicle-secondary {
    left: 4%;
    bottom: 68%;
    scale: .84;
  }
}
@media (max-width: 980px) {
  .driver-art-wrap img { translate: 0 0; scale: 1; }
  .driver-vehicle-label { font-size: .58rem; padding: 3px 8px 2px; }
  .driver-vehicle-label.label-primary { left: 39% !important; bottom: -1%; transform: translateX(-100%); }
  .driver-vehicle-label.label-secondary { left: 43% !important; bottom: 116%; transform: translateX(-100%); }
}
@media (max-width: 540px) {
  .profile-modal { padding: 10px; }
  .profile-visual-stage { min-height: 390px; }
  #modalImage { left: -2%; width: 67%; height: 92%; }
  .modal-vehicle-gallery { right: -5%; width: 61%; height: 34%; }
  .modal-weapon-card { width: 108px; min-height: 136px; padding: 9px; grid-template-rows: auto 72px auto; }
  #modalWeaponImage { height: 72px; }
  .modal-weapon-kicker { font-size: .48rem; }
  #modalWeaponName { font-size: .72rem; }
}
@media (max-width: 980px) {
  .driver-progress,
  .map-progress {
    left: auto !important;
    right: 3% !important;
    bottom: 8px !important;
    justify-content: flex-end;
  }
}
@media (max-width: 620px) {
  .driver-progress,
  .map-progress {
    right: 2% !important;
    bottom: 6px !important;
    transform: scale(.88);
    transform-origin: right bottom;
  }
}
@media (max-width: 980px), (max-height: 679px) {
  .download-copy {
    transform: none;
  }
  .download-requirements {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(900px, 90vw);
    margin: 0 auto 30px;
  }
  .download-requirements ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-requirements .requirement-size {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  .download-requirements {
    padding-inline: 14px;
  }
  .download-requirements ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .download-requirements li {
    text-align: center;
    padding-left: 0;
  }
  .download-requirements li::before {
    position: relative;
    display: inline-block;
    top: -1px;
    left: auto;
    margin-right: 7px;
  }
}
@media (max-width: 980px) {
  .tutorial[data-tutorial-level="master"] .section-heading h2 {
    width: auto;
    max-width: 94vw;
    font-size: clamp(2rem, 6vw, 4.2rem);
    white-space: normal;
  }
  .download-requirements {
    width: min(720px, 88vw);
  }
}
@media (max-width: 620px) {
  .download-requirements {
    width: min(440px, 90vw);
  }
  .download-requirements ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .driver-progress,
  .map-progress {
    right: 1.5% !important;
  }
}
@media (max-width: 980px) {
  .tutorial[data-tutorial-level="master"] .section-heading h2 {
    font-size: clamp(3.4rem,6vw,6.6rem) !important;
    white-space: nowrap !important;
    transform: scaleX(.76);
  }
}
@media (max-width: 620px) {
  .tutorial[data-tutorial-level="master"] .section-heading h2 {
    font-size: 3.4rem !important;
    transform: scaleX(.58);
  }
}
@media (max-width: 980px) {
  .mirror-links {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .mirror-links .mirror {
    min-height: 42px;
  }
}
@media (min-width: 901px) and (max-height: 790px) {
  .credits-legal.credits-publisher-strip {
    min-height: 70px;
    padding: 6px 15px;
    grid-template-columns: minmax(225px, 275px) minmax(0, 1fr);
    gap: 14px;
  }
  .credits-legal.credits-publisher-strip .credits-mark { max-height: 35px; }
  .credits-legal.credits-publisher-strip .credits-mark-activision { max-width: 61px; height: 21px; }
  .credits-legal.credits-publisher-strip .credits-mark-luxoflux { max-width: 63px; height: 30px; }
  .credits-legal.credits-publisher-strip .credits-mark-privacy { max-width: 35px; height: 35px; }
  .credits-legal.credits-publisher-strip .credits-mark-teen { max-width: 45px; height: 35px; }
  .credits-legal.credits-publisher-strip .credits-rights-copy p { font-size: .49rem; line-height: 1.2; }
}
@media (max-width: 900px) {
  .credits-legal.credits-publisher-strip {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 10px 15px;
    text-align: left;
  }
  .credits-publisher-logos {
    width: min(330px, 100%);
    margin-inline: auto;
  }
  .credits-rights-copy { text-align: center; }
}
@media (max-width:900px) {
  .credits-legal.credits-publisher-strip#creditsRightsStrip {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 9px 14px;
  }
  #creditsRightsStrip .credits-publisher-logos { width: min(320px,100%); margin-inline:auto; }
  #creditsRightsStrip .credits-rights-copy { text-align:center; }
}
@media (min-width: 901px) and (max-height: 790px) {
  .credits-legal.credits-publisher-strip#creditsRightsStrip {
    min-height: 112px !important;
    grid-template-columns: minmax(330px, 380px) minmax(0, 1fr) !important;
    column-gap: 25px !important;
    padding: 8px 18px 7px !important;
  }
  #creditsRightsStrip .credits-mark-activision { width: 98px !important; height: 32px !important; }
  #creditsRightsStrip .credits-mark-luxoflux { width: 94px !important; height: 47px !important; }
  #creditsRightsStrip .credits-mark-privacy { width: 52px !important; height: 70px !important; }
  #creditsRightsStrip .credits-mark-teen { width: 88px !important; height: 49px !important; }
  #creditsRightsStrip .credits-rights-copy p { font-size: .50rem !important; }
  #creditsRightsStrip .credits-asset-credit { font-size: .56rem !important; }
  #creditsRightsStrip .credits-rights-signoff { font-size: .57rem !important; }
}
@media (max-width: 900px) {
  .credits-legal.credits-publisher-strip#creditsRightsStrip {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 8px !important;
    padding: 11px 15px 9px !important;
  }
  #creditsRightsStrip .credits-publisher-logos {
    width: min(430px, 100%) !important;
    margin-inline: auto !important;
  }
  #creditsRightsStrip .credits-rights-copy {
    padding-left: 0 !important;
    text-align: center !important;
  }
  #creditsRightsStrip .credits-brand-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 5px !important;
  }
  #creditsRightsStrip .credits-brand-footer p {
    white-space: normal !important;
    text-align: center !important;
  }
}
@media (min-width: 901px) and (min-height: 680px) {
  body.scene-engine-ready main > .social.scene-section { min-height: calc(100vh - 58px); }
}
@media (min-width: 901px) and (min-height: 680px) and (max-height: 790px) {
  .social { padding-top: 54px; padding-bottom: 14px; }
  .social-header h2 { font-size: clamp(4.5rem,8vh,7.2rem); }
  .social-header > p:last-child { margin-top: 8px; font-size: .78rem; }
  .social-grid { margin-top: 14px; gap: 12px; }
  .social-card { min-height: 282px; padding: 20px 20px 18px; }
  .social-card-heading { min-height: 126px; }
  .social-card-heading h3 { margin-block: 7px 8px; font-size: clamp(1.95rem,3.45vh,2.55rem); }
  .social-card-heading p { font-size: .76rem; line-height: 1.42; }
  .social-link { min-height: 49px; grid-template-columns: 36px minmax(0,1fr); padding: 6px 9px; }
  .social-link-icon { width: 36px; height: 36px; }
  .social-link-icon svg { width: 21px; height: 21px; }
  .social-link b { font-size: .73rem; }
  #creditsRightsStrip .credits-rights-copy p { font-size: .60rem !important; line-height: 1.32 !important; }
}
@media (max-width: 900px) {
  .social { padding: 86px 5vw 56px; }
  .social::before { inset: -12% 28% 54% -24%; }
  .social-header { width: 100%; margin-inline: 0; }
  .social-header h2 { font-size: clamp(4.7rem,18vw,7.5rem); }
  .social-header > p:last-child { max-width: 620px; }
  .social-grid { width: 100%; grid-template-columns: 1fr; }
  .social-card { min-height: 310px; }
  #creditsRightsStrip .credits-rights-copy p { font-size: .62rem !important; line-height: 1.36 !important; }
}
@media (max-width: 520px) {
  .social-card { padding: 21px 17px 18px; }
  .social-card-heading h3 { font-size: 2.2rem; }
  .social-link b { font-size: .74rem; }
}
@media (min-width:901px) and (min-height:680px) and (max-height:790px) {
  .social-card-heading p { font-size: .76rem; line-height: 1.42; }
  .social-link { min-height: 49px; grid-template-columns:36px minmax(0,1fr); padding:6px 9px; gap:10px; }
  .social-link-icon { width:36px; height:36px; }
  .social-link-icon svg { width:21px; height:21px; }
  .social-link small { font-size:.53rem; }
  .social-link b { font-size:.73rem; }
}
@media (max-width:520px) {
  .social-card-heading p { font-size:.80rem; }
  .social-link { min-height:53px; grid-template-columns:39px minmax(0,1fr); }
  .social-link-icon { width:39px; height:39px; }
  .social-link b { font-size:.74rem; }
}
@media (max-width: 900px) {
  .hero-right-image {
    width: 72%;
    opacity: .58;
    background-position: 58% center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.32) 12%, #000 34%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.32) 12%, #000 34%, #000 100%);
  }
}
@media (max-width: 600px) {
  .hero-right-image {
    width: 88%;
    opacity: .36;
    background-position: 62% center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-right-image { animation: none !important; }
}
@media (max-width: 820px) {
  .news-showcase { height: clamp(500px, 70vh, 620px); }
  .news-more-row { padding: 10px 12px 13px; }
  .more-information-button { min-width: 188px; padding-inline: 18px; letter-spacing: 1.25px; }

  .information-modal { padding: 10px; }
  .information-panel {
    width: 100%;
    height: 96vh;
    max-height: 96vh;
    grid-template-rows: minmax(190px, 27vh) minmax(0,1fr);
    clip-path: polygon(13px 0,100% 0,100% calc(100% - 13px),calc(100% - 13px) 100%,0 100%,0 13px);
  }
  .information-heading { left: 22px; right: 62px; top: 48px; }
  .information-heading h2 { font-size: clamp(1.75rem,8vw,3rem); }
  .information-scroll { padding: 26px 22px 42px; font-size: .98rem; }
  .information-close { top: 10px; right: 10px; width: 42px; height: 42px; }
}
@media (max-width: 560px) {
  .news-showcase { height: 555px; }
  .news-slide-caption { min-height: 92px; }
  .news-slide-caption h3 { font-size: 1.05rem; line-height: 1.05; }
  .news-more-row { padding-bottom: 12px; }
  .more-information-button { min-height: 40px; font-size: .65rem; }

  .tutorial-card-media h3 { padding-top: 48px; font-size: 1.05rem; }
  .tutorial-more-row { padding: 11px 10px 14px; }

  .information-panel { grid-template-rows: 185px minmax(0,1fr); }
  .information-kicker { font-size: .62rem; letter-spacing: 1.8px; }
  .information-heading { top: 52px; }
  .information-scroll li { padding-left: 30px; }
  .information-scroll li::before { left: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .information-panel,
  .more-information-button,
  .information-close {
    transition: none !important;
  }
}
@media (max-width: 900px) {
  .news-showcase {
    height: min(520px, calc(100svh - 150px));
    min-height: 455px;
    margin-top: 20px;
  }
  .news-slide {
    width: min(560px, 86vw);
    top: 8px;
  }
  .news-slide.is-prev { left: -6%; transform: translate3d(-50%,7%,0) scale(.62); }
  .news-slide.is-next { left: 106%; transform: translate3d(-50%,7%,0) scale(.62); }
  .news-slide-caption {
    min-height: 82px;
    padding: 9px 16px 11px;
  }
  .news-more-row {
    flex-basis: 54px;
    min-height: 54px;
  }

  .information-panel {
    width: 100%;
    height: 94svh;
    max-height: 94svh;
    grid-template-rows: minmax(175px, 24vh) minmax(0,1fr);
  }
  .information-heading {
    padding: 44px 62px 20px 22px;
  }
  .information-heading h2 {
    font-size: clamp(1.45rem, 5.5vw, 2.2rem);
    line-height: 1.04;
  }
  .information-scroll h3 {
    font-size: clamp(1.25rem, 4.4vw, 1.7rem);
  }
}
@media (max-width: 620px) {
  .news-showcase {
    height: min(500px, calc(100svh - 120px));
    min-height: 430px;
  }
  .news-slide {
    width: min(520px, 88vw);
    top: 6px;
  }
  .news-slide-caption {
    min-height: 78px;
  }
  .news-slide-caption h3 {
    font-size: 1rem;
  }
  .news-more-row {
    flex-basis: 50px;
    min-height: 50px;
    padding: 6px 10px 8px;
  }
  .news-more-row .more-information-button {
    min-width: 178px;
    min-height: 35px;
    font-size: .62rem;
  }

  .information-panel {
    grid-template-rows: minmax(160px, 23vh) minmax(0,1fr);
  }
  .information-heading {
    padding: 30px 56px 14px 18px;
  }
  .information-kicker {
    margin-bottom: 6px;
    font-size: .58rem;
    letter-spacing: 1.6px;
  }
  .information-heading h2 {
    font-size: clamp(1.12rem, 5.5vw, 1.55rem);
    line-height: 1.04;
  }
  .information-scroll {
    padding: 22px 18px 38px;
  }
}
