/* ASPHALT ARENA — shared styles */
:root {
  --ink: #06070b;
  --ink-soft: #0c0e16;
  --panel: #11141f;
  --panel-2: #171a27;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --white: #f8f7fb;
  --grey: #aaa8b5;
  --orange: #ff6b00;
  --orange-light: #ff9f2f;
  --purple: #a629ff;
  --purple-light: #d17cff;
  --green: #50d96a;
  --yellow: #f2d54c;
  --blue: #6ee4ff;
  --font-display: "Audiowide", "Arial Black", sans-serif;
  --font-body: "Audiowide", "Arial Black", sans-serif;
  --shell: min(1220px, calc(100% - 40px));
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-orange: 0 0 42px rgba(255, 107, 0, 0.22);
  --shadow-purple: 0 0 42px rgba(166, 41, 255, 0.22);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 12%, rgba(166, 41, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(255, 107, 0, 0.1), transparent 26rem),
    var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.012em;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

::selection {
  background: var(--purple);
  color: white;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 7.4vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.15;
}

p {
  color: var(--grey);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  width: min(820px, 100%);
}

.section {
  position: relative;
  padding-block: clamp(82px, 10vw, 150px);
}

.section-tight {
  padding-block: clamp(62px, 8vw, 108px);
}

.section-top-line {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.35fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 510px;
  justify-self: end;
  font-size: 1.06rem;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.kicker {
  max-width: 730px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--orange-light), var(--purple-light));
  background-clip: text;
  -webkit-background-clip: text;
}

.display-font {
  font-family: var(--font-display);
  font-weight: 400;
}

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

.muted {
  color: var(--grey);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: white;
  color: black;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(6, 7, 11, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand-wordmark {
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-wordmark b {
  color: var(--orange);
  font-weight: inherit;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.1vw, 34px);
  align-items: center;
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: clamp(14px, 1.55vw, 26px);
  align-items: center;
  list-style: none;
}

.site-nav ul a {
  position: relative;
  padding-block: 14px;
  color: #d3d1da;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav ul a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav ul a:hover,
.site-nav ul a[aria-current="page"] {
  color: white;
}

.site-nav ul a:hover::after,
.site-nav ul a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Buttons and links */
.button {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.2);
  color: #130700;
}

.button-primary:hover {
  background: var(--orange-light);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.button-secondary:hover {
  border-color: var(--purple-light);
  background: rgba(166, 41, 255, 0.1);
}

.button-small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.7rem;
}

.text-link {
  display: inline-flex;
  padding-block: 8px;
  gap: 10px;
  align-items: center;
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  margin-top: 34px;
  gap: 13px;
  flex-wrap: wrap;
}

/* Hero */
.home-hero {
  position: relative;
  min-height: min(960px, 100svh);
  padding: 154px 0 74px;
  overflow: clip;
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  z-index: -2;
  top: -20%;
  right: -16%;
  width: 72%;
  height: 115%;
  background:
    linear-gradient(115deg, transparent 12%, rgba(6, 7, 11, 0.16) 60%, var(--ink) 100%),
    url("../images/venue-layout-web.jpg") center / cover no-repeat;
  content: "";
  opacity: 0.48;
  transform: perspective(1000px) rotateY(-7deg) rotateZ(-3deg);
  transform-origin: center;
  mask-image: linear-gradient(90deg, transparent 0, black 36%, black 72%, transparent 100%);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(6, 7, 11, 0.84) 42%, rgba(6, 7, 11, 0.36) 72%, var(--ink) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 35%);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: calc(min(960px, 100svh) - 230px);
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.42fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.hero-copy .kicker {
  max-width: 650px;
  margin-bottom: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-console {
  position: relative;
  align-self: end;
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(10, 12, 19, 0.78);
  box-shadow: var(--shadow-purple);
  backdrop-filter: blur(14px);
}

.hero-console::before {
  position: absolute;
  top: -1px;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  content: "";
  box-shadow: 0 0 15px currentColor;
}

.console-label {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--grey);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-dot {
  color: var(--green);
}

.live-dot::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  content: "";
}

.score-row {
  display: grid;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
}

.score-row:last-child {
  border-bottom: 1px solid var(--line);
}

.player-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  box-shadow: 0 0 12px currentColor;
}

.dot-orange {
  background: var(--orange);
  color: var(--orange);
}

.dot-purple {
  background: var(--purple);
  color: var(--purple);
}

.dot-green {
  background: var(--green);
  color: var(--green);
}

.dot-yellow {
  background: var(--yellow);
  color: var(--yellow);
}

.player-name {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.score {
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.console-timer {
  display: flex;
  margin-top: 18px;
  align-items: baseline;
  justify-content: space-between;
}

.console-timer span {
  color: var(--grey);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-timer strong {
  color: var(--orange-light);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
}

.hero-foot .shell {
  display: flex;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.hero-foot span {
  color: #8e8b98;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.player-dots {
  display: flex;
  gap: 8px;
}

.player-dots i {
  width: 30px;
  height: 4px;
  border-radius: 99px;
}

/* Page intro */
.page-hero {
  position: relative;
  padding: clamp(154px, 18vw, 230px) 0 clamp(80px, 10vw, 138px);
  overflow: clip;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -8%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 41, 255, 0.12), transparent 65%);
  content: "";
}

.page-hero h1 {
  max-width: 1100px;
  font-size: clamp(2.7rem, 6.4vw, 6rem);
}

.page-hero .kicker {
  max-width: 760px;
}

.page-index {
  display: flex;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 32px;
  color: var(--grey);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Concept / steps */
.concept-statement {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.concept-statement blockquote {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.concept-statement blockquote em {
  color: var(--orange);
  font-style: normal;
}

.concept-copy {
  padding-top: 8px;
}

.concept-copy > p {
  max-width: 630px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.feature-list {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.feature-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: white;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-list li:nth-child(odd) {
  margin-right: 24px;
}

.feature-list li::before {
  margin-right: 10px;
  color: var(--purple-light);
  content: "+";
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.step-card {
  position: relative;
  min-height: 355px;
  padding: 36px;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.step-card:first-child {
  border-left: 0;
}

.step-number {
  display: block;
  margin-bottom: 84px;
  color: var(--grey);
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.step-card h3 {
  max-width: 230px;
  font-size: clamp(1.8rem, 3vw, 3.05rem);
  letter-spacing: -0.045em;
}

.step-card p {
  max-width: 330px;
  margin-bottom: 0;
}

.step-orbit {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.step-orbit::before,
.step-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.step-orbit::before {
  inset: 30px;
  border: 1px solid var(--line);
}

.step-orbit::after {
  right: 20px;
  bottom: 30px;
  width: 12px;
  height: 12px;
  background: var(--step-colour, var(--orange));
  box-shadow: 0 0 20px var(--step-colour, var(--orange));
}

.step-card:nth-child(2) {
  --step-colour: var(--purple);
}

.step-card:nth-child(3) {
  --step-colour: var(--green);
}

/* Feature band */
.difference-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.16), transparent 30%),
    linear-gradient(315deg, rgba(166, 41, 255, 0.18), transparent 35%),
    var(--panel);
}

.difference-band::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    110deg,
    transparent 0,
    transparent 42px,
    rgba(255, 255, 255, 0.022) 43px,
    transparent 44px
  );
  content: "";
}

.difference-content {
  position: relative;
  text-align: center;
}

.difference-content h2 {
  max-width: 1050px;
  margin-inline: auto;
}

.difference-content .kicker {
  margin-inline: auto;
}

.difference-content .eyebrow {
  justify-content: center;
}

.difference-pills {
  display: flex;
  margin: 42px auto 0;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.difference-pills span,
.tag-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.035);
  color: #d7d5df;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.game-card {
  --game-colour: var(--orange);
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--game-colour) 10%, transparent), transparent 42%),
    var(--panel);
  overflow: hidden;
}

.game-card:hover {
  border-color: color-mix(in srgb, var(--game-colour) 56%, white 4%);
}

.game-orange {
  --game-colour: var(--orange);
}

.game-purple {
  --game-colour: var(--purple);
}

.game-green {
  --game-colour: var(--green);
}

.game-yellow {
  --game-colour: var(--yellow);
}

.game-card-top {
  display: flex;
  margin-bottom: 65px;
  align-items: center;
  justify-content: space-between;
}

.format-number {
  color: var(--game-colour);
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
  color: #dedce4;
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.status-available-now {
  border-color: rgba(80, 217, 106, 0.45);
  background: rgba(80, 217, 106, 0.1);
  color: #b5ffc1;
}

.status-coming-soon {
  border-color: rgba(166, 41, 255, 0.5);
  background: rgba(166, 41, 255, 0.1);
  color: #e2aeff;
}

.status-in-development,
.status-example-only {
  color: #b9b7c2;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.game-card > p:not(.eyebrow) {
  max-width: 540px;
}

.game-mark {
  position: absolute;
  top: 86px;
  right: 38px;
  display: flex;
  gap: 5px;
  opacity: 0.7;
  transform: skewX(-18deg);
}

.game-mark span {
  width: 8px;
  height: 28px;
  background: var(--game-colour);
  box-shadow: 0 0 14px var(--game-colour);
}

.game-specs {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-specs > div {
  padding: 18px 10px 16px 0;
}

.game-specs dt,
.event-details dt {
  margin-bottom: 4px;
  color: #777582;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-specs dd,
.event-details dd {
  margin: 0;
  color: #eeedf2;
  font-size: 0.84rem;
  font-weight: 650;
}

.tag-list {
  display: flex;
  margin: 4px 0 24px;
  padding: 0;
  gap: 7px;
  flex-wrap: wrap;
  list-style: none;
}

.games-note {
  display: flex;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.games-note p {
  margin: 0;
  font-size: 0.83rem;
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.events-empty {
  display: grid;
  min-height: 390px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(166, 41, 255, 0.12), transparent 42%),
    var(--panel);
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: center;
}

.events-empty h3 {
  max-width: 680px;
  font-size: clamp(1.8rem, 3.7vw, 3.4rem);
}

.events-empty p:not(.eyebrow) {
  max-width: 660px;
}

.events-empty-art {
  position: relative;
  display: grid;
  width: min(320px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-items: center;
}

.events-empty-art::before,
.events-empty-art::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.events-empty-art::before {
  inset: 18%;
}

.events-empty-art::after {
  inset: 36%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.events-empty-art span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 4px;
}

.events-empty-art span:nth-child(1) {
  top: 15%;
  left: 48%;
}

.events-empty-art span:nth-child(2) {
  top: 48%;
  right: 15%;
}

.events-empty-art span:nth-child(3) {
  right: 48%;
  bottom: 15%;
}

.events-empty-art span:nth-child(4) {
  top: 48%;
  left: 15%;
}

.event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.event-visual {
  position: relative;
  min-height: 245px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 107, 0, 0.2), transparent 32%),
    radial-gradient(circle at 80% 90%, rgba(166, 41, 255, 0.24), transparent 38%),
    #0b0d14;
  background-position: center;
  background-size: cover;
}

.event-visual::after {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.event-visual .status-pill {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
}

.event-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
}

.event-placeholder b {
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.event-placeholder span {
  position: absolute;
  width: 95px;
  height: 95px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(255, 107, 0, 0.25);
}

.event-placeholder span:nth-child(2) {
  width: 155px;
  height: 155px;
  border-color: var(--purple);
}

.event-content {
  padding: clamp(26px, 4vw, 40px);
}

.event-content h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.event-details {
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-details > div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.event-note {
  display: inline-block;
  color: #777582;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-types {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.booking-type {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.booking-type:last-child {
  border-right: 0;
}

.booking-type span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.7rem;
}

.booking-type h3 {
  margin-top: 46px;
  font-size: 1.45rem;
}

.booking-type p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 420px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.gallery-wide {
  grid-column: 1 / -1;
  min-height: min(60vw, 650px);
}

.gallery-item img,
.media-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.015);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 70px 24px 22px;
  background: linear-gradient(transparent, rgba(6, 7, 11, 0.92));
  gap: 4px;
  flex-direction: column;
}

.gallery-item figcaption strong {
  font-size: 0.9rem;
}

.gallery-item figcaption span {
  color: #bbb9c4;
  font-size: 0.8rem;
}

.media-placeholder {
  --placeholder-colour: var(--orange);
  position: relative;
  display: grid;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--placeholder-colour) 18%, transparent), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent),
    #0c0e16;
  place-items: center;
}

.placeholder-purple {
  --placeholder-colour: var(--purple);
}

.placeholder-green {
  --placeholder-colour: var(--green);
}

.placeholder-yellow {
  --placeholder-colour: var(--yellow);
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--placeholder-colour) 48%, transparent);
  border-radius: 50%;
  content: "";
}

.media-placeholder::before {
  width: 170px;
  height: 170px;
}

.media-placeholder::after {
  width: 230px;
  height: 230px;
  opacity: 0.35;
}

.media-track {
  position: relative;
  z-index: 1;
  width: 130px;
  height: 72px;
  border: 3px solid var(--placeholder-colour);
  border-radius: 42px 18px 42px 18px;
  box-shadow: 0 0 28px color-mix(in srgb, var(--placeholder-colour) 38%, transparent);
  transform: rotate(-8deg);
}

.media-track::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--placeholder-colour);
  box-shadow: 0 0 18px var(--placeholder-colour);
  content: "";
  transform: translate(-50%, -50%);
}

.placeholder-corner {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 35px;
  height: 35px;
  border-top: 2px solid var(--placeholder-colour);
  border-left: 2px solid var(--placeholder-colour);
}

.live-module {
  display: grid;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(166, 41, 255, 0.12), transparent 40%),
    var(--panel);
  grid-template-columns: 0.7fr 1fr;
  overflow: hidden;
}

.live-copy {
  padding: clamp(34px, 6vw, 68px);
}

.live-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.live-screen {
  position: relative;
  display: grid;
  min-height: 360px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(6, 7, 11, 0.15), rgba(6, 7, 11, 0.6)),
    url("../images/venue-layout-web.jpg") center / cover;
  place-items: center;
}

.live-screen::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  content: "";
}

.live-screen span {
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: rgba(6, 7, 11, 0.82);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-module.has-embed {
  display: block;
}

.live-module iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
}

/* How it works and About */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.principle {
  min-height: 330px;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.principle-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--orange-light);
  font-family: var(--font-display);
  font-size: 0.64rem;
  place-items: center;
}

.principle h3 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.principle p {
  max-width: 520px;
  margin-bottom: 0;
}

.play-sequence {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.play-sequence::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 26px;
  width: 1px;
  background: linear-gradient(var(--orange), var(--purple), var(--green));
  content: "";
}

.play-sequence li {
  position: relative;
  display: grid;
  min-height: 120px;
  padding: 0 0 38px 84px;
  grid-template-columns: 0.3fr 1fr;
  gap: 28px;
}

.play-sequence li::before {
  position: absolute;
  top: 7px;
  left: 18px;
  width: 17px;
  height: 17px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 0 18px rgba(255, 107, 0, 0.45);
  content: "";
}

.play-sequence li:nth-child(2)::before,
.play-sequence li:nth-child(3)::before {
  background: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 0 18px rgba(166, 41, 255, 0.45);
}

.play-sequence li:nth-child(4)::before {
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 0 18px rgba(80, 217, 106, 0.45);
}

.play-sequence strong {
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
}

.play-sequence p {
  max-width: 650px;
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.42fr);
  gap: clamp(48px, 10vw, 130px);
  align-items: start;
}

.about-layout .lead {
  color: white;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.about-aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.about-aside img {
  width: min(190px, 72%);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: -6px auto 28px;
  object-fit: contain;
}

.arena-artwork {
  margin-top: clamp(58px, 8vw, 105px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.arena-artwork img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.91 / 1;
  object-fit: cover;
}

.arena-artwork figcaption {
  display: flex;
  padding: 22px 24px;
  gap: 12px 30px;
  align-items: baseline;
  justify-content: space-between;
}

.arena-artwork figcaption strong {
  color: white;
  font-size: 0.82rem;
}

.arena-artwork figcaption span {
  color: var(--grey);
  font-size: 0.72rem;
  text-align: right;
}

.about-aside dl {
  margin: 0;
}

.about-aside dl > div {
  display: flex;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
  justify-content: space-between;
}

.about-aside dt {
  color: #777582;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-aside dd {
  margin: 0;
  text-align: right;
}

.ambition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ambition-item {
  min-height: 250px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.ambition-item:first-child {
  border-left: 0;
}

.ambition-item span {
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: 0.68rem;
}

.ambition-item h3 {
  margin-top: 50px;
  font-size: 1.4rem;
}

.ambition-item p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  min-height: 90px;
  padding: 23px 4px;
  grid-template-columns: 50px 1fr 28px;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: #66636f;
  font-family: var(--font-display);
  font-size: 0.65rem;
}

.faq-item summary b {
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  font-weight: 720;
}

.faq-item summary i {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: white;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 800px;
  padding: 0 0 28px 70px;
}

.faq-answer p {
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-meta {
  display: grid;
  margin-top: 40px;
  gap: 0;
}

.contact-meta div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-meta small {
  display: block;
  margin-bottom: 4px;
  color: #777582;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-meta strong,
.contact-meta a {
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-form {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #d6d4dd;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #0a0c13;
}

.field input,
.field select {
  height: 54px;
  padding: 0 15px;
}

.field textarea {
  min-height: 170px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple-light);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(166, 41, 255, 0.17);
}

.form-footer {
  display: flex;
  margin-top: 24px;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  max-width: 390px;
  margin: 0;
  font-size: 0.72rem;
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  font-size: 0.8rem;
}

.form-status.is-warning {
  color: var(--yellow);
}

.form-status.is-success {
  color: var(--green);
}

/* Future modules */
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.future-card {
  position: relative;
  min-height: 300px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.future-card::after {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #787582;
  content: "FUTURE";
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.future-card h3 {
  margin-top: 62px;
}

/* CTA */
.cta-section {
  position: relative;
  padding-block: clamp(90px, 12vw, 180px);
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(1000px, 100%);
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 50%, rgba(255, 107, 0, 0.2), transparent 42%),
    radial-gradient(circle at 75% 50%, rgba(166, 41, 255, 0.22), transparent 42%);
  content: "";
  filter: blur(6px);
  transform: translate(-50%, -50%);
}

.cta-section .eyebrow {
  justify-content: center;
}

.cta-section h2 {
  max-width: 980px;
  margin-inline: auto;
}

.cta-section p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.cta-section .button-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #050609;
}

.player-rail {
  display: grid;
  height: 4px;
  grid-template-columns: repeat(4, 1fr);
}

.player-rail span {
  box-shadow: 0 0 18px currentColor;
}

.player-orange {
  background: var(--orange);
  color: var(--orange);
}

.player-purple {
  background: var(--purple);
  color: var(--purple);
}

.player-green {
  background: var(--green);
  color: var(--green);
}

.player-yellow {
  background: var(--yellow);
  color: var(--yellow);
}

.footer-grid {
  display: grid;
  padding-block: 65px;
  grid-template-columns: minmax(290px, 1.3fr) repeat(3, minmax(140px, 0.45fr));
  gap: 46px;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-brand img {
  width: 82px;
}

.footer-brand strong {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0;
  font-size: 0.8rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column strong {
  margin-bottom: 9px;
  color: white;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #92909c;
  font-size: 0.78rem;
  text-decoration: none;
  text-transform: capitalize;
}

.footer-column a:hover {
  color: white;
}

.footer-status span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.footer-base {
  display: flex;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  gap: 24px;
  justify-content: space-between;
  color: #65636d;
  font-size: 0.66rem;
}

/* 404 */
.error-page {
  display: grid;
  min-height: 100svh;
  padding: 130px 0 60px;
  place-items: center;
  text-align: center;
}

.error-code {
  margin-bottom: 15px;
  color: transparent;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  background-clip: text;
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 17rem);
  line-height: 0.85;
}

.error-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.7rem);
}

.error-page p {
  max-width: 570px;
  margin-inline: auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 480ms ease var(--reveal-delay, 0ms),
    transform 480ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 32px, 1220px);
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 115px 24px 40px;
    background:
      radial-gradient(circle at 90% 20%, rgba(166, 41, 255, 0.18), transparent 30%),
      var(--ink);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav ul a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .site-nav ul a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.5fr);
  }

  .footer-grid .footer-column:last-child {
    display: none;
  }
}

@media (max-width: 800px) {
  .section-heading,
  .concept-statement,
  .about-layout,
  .contact-grid,
  .live-module,
  .events-empty {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    justify-self: start;
  }

  .hero-grid {
    display: block;
    min-height: auto;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 128px;
  }

  .home-hero::before {
    top: 12%;
    right: -38%;
    width: 110%;
    height: 72%;
    opacity: 0.34;
  }

  .hero-console {
    width: min(390px, 100%);
    margin: 52px 0 0 auto;
  }

  .steps-grid,
  .booking-types,
  .ambition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card:nth-child(3),
  .booking-type:nth-child(3),
  .ambition-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .step-card:nth-child(3) {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .booking-type:nth-child(2) {
    border-right: 0;
  }

  .booking-type:nth-child(3) {
    grid-column: 1 / -1;
  }

  .ambition-item:nth-child(odd) {
    border-left: 0;
  }

  .ambition-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .live-screen {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .play-sequence li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 24px, 1220px);
  }

  body {
    font-size: 13px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-wordmark {
    display: none;
  }

  .home-hero {
    padding-top: 126px;
  }

  .page-hero {
    padding-top: 130px;
  }

  .hero-console {
    margin-top: 42px;
  }

  .hero-foot .shell {
    align-items: flex-end;
  }

  .hero-foot .shell > span {
    max-width: 190px;
  }

  .section-heading {
    gap: 22px;
  }

  .steps-grid,
  .games-grid,
  .events-grid,
  .principles-grid,
  .booking-types,
  .gallery-grid,
  .future-grid,
  .ambition-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:nth-child(3),
  .booking-type,
  .booking-type:nth-child(3),
  .ambition-item,
  .ambition-item:nth-child(n + 3) {
    grid-column: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
  }

  .step-card:first-child,
  .booking-type:first-child,
  .ambition-item:first-child {
    border-top: 0;
  }

  .step-card {
    min-height: 300px;
    padding-inline: 18px;
  }

  .step-number {
    margin-bottom: 54px;
  }

  .game-card {
    min-height: 390px;
    padding: 26px 22px;
  }

  .game-card-top {
    margin-bottom: 55px;
  }

  .game-mark {
    right: 24px;
  }

  .game-specs,
  .event-details {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-wide {
    grid-column: auto;
    min-height: 380px;
  }

  .feature-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-list li:nth-child(odd) {
    margin-right: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .play-sequence li {
    padding-left: 66px;
  }

  .faq-item summary {
    grid-template-columns: 34px 1fr 26px;
    gap: 10px;
  }

  .faq-answer {
    padding-left: 44px;
  }

  .footer-grid {
    gap: 38px 28px;
  }

  .footer-base {
    flex-direction: column;
  }

  .arena-artwork figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .arena-artwork figcaption span {
    text-align: left;
  }
}

@media (min-width: 1600px) {
  :root {
    --shell: min(1440px, calc(100% - 100px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .game-card {
    min-height: 520px;
  }

  .game-card h3 {
    font-size: 2.5rem;
  }

  .game-specs {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .status-pill,
  .button,
  .game-card,
  .event-card,
  .principle,
  .contact-form {
    border: 1px solid ButtonText;
  }
}
