:root {
  color-scheme: dark;
  --black: #050201;
  --near-black: #0c0503;
  --charcoal: #17100d;
  --iron: #312821;
  --ember: #ff4b16;
  --ember-dark: #9f260c;
  --gold: #f6c36a;
  --gold-deep: #a96822;
  --bone: #f8e2bd;
  --muted: #ba9f7b;
  --teal: #1a8a83;
  --blood: #5c1209;
  --line: rgba(246, 195, 106, 0.22);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 75, 22, 0.2), transparent 35rem),
    linear-gradient(180deg, var(--black), #120604 34rem, var(--near-black));
  color: var(--bone);
  font-family: 'Seraphon', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 86%, transparent);
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  padding: 8px clamp(16px, 3vw, 48px);
  background: #000;
  transition: background 160ms ease;
}

.site-header[data-elevated="true"] {
  background: #000;
}

/* soften the header's bottom edge so the black melts into the art below it */
.site-header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to bottom, #000, transparent);
  pointer-events: none;
}

.brand,
nav,
.launch-strip,
.casino-games,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--gold);
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: auto;
  height: clamp(104px, 10vw, 150px);
  object-fit: contain;
}

.beta-cta {
  align-self: center;
  display: inline-flex;
}

.beta-cta img {
  width: auto;
  height: clamp(108px, 10.4vw, 150px);
  object-fit: contain;
}

.header-left {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
  justify-self: start;
}

.header-banner {
  justify-self: center;
  display: inline-flex;
}

.header-banner img {
  width: auto;
  height: clamp(128px, 12vw, 180px);
  max-width: 100%;
  object-fit: contain;
}

nav {
  justify-self: end;
  align-self: start;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 24px);
  color: rgba(248, 226, 189, 0.78);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dd-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 5;
  display: none;
  flex-direction: column;
  min-width: 168px;
  padding: 12px 18px 14px;
  background: #000;
  border: 1px solid rgba(246, 195, 106, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  display: flex;
}

.nav-dd-menu a {
  padding: 7px 0;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(176px, 15vw, 212px) clamp(18px, 5vw, 88px) 56px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.34;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.08);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(circle at 26% 36%, rgba(255, 75, 22, 0.34), transparent 24rem),
    linear-gradient(90deg, rgba(5, 2, 1, 0.94), rgba(5, 2, 1, 0.76) 50%, rgba(5, 2, 1, 0.36)),
    linear-gradient(180deg, rgba(5, 2, 1, 0.08), rgba(5, 2, 1, 0.2) 70%, var(--black));
}

.hero::after {
  border: 1px solid rgba(246, 195, 106, 0.18);
  margin: clamp(176px, 15vw, 212px) clamp(16px, 4vw, 64px) 34px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(620px, 100%);
  max-height: 248px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 22px -14px;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.66));
}

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

h1,
h2 {
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(3.1rem, 5.4vw, 6.3rem);
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5.4vw, 5.8rem);
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: #ffe6b2;
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(248, 226, 189, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.hero-beta-banner {
  display: inline-flex;
  width: min(520px, 100%);
}

.hero-beta-banner img {
  width: 100%;
  height: auto;
}

.explore-cta {
  display: inline-flex;
}

.explore-cta img {
  height: clamp(108px, 12vw, 148px);
  width: auto;
}

.hero-actions .notify-button,
.hero-actions .ghost-button {
  margin-top: 0;
}

.launch-strip {
  width: min(620px, 100%);
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(246, 195, 106, 0.38);
  background:
    linear-gradient(90deg, rgba(255, 75, 22, 0.22), rgba(246, 195, 106, 0.08)),
    rgba(8, 4, 2, 0.74);
  box-shadow: 0 0 54px rgba(255, 75, 22, 0.18);
}

.launch-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-strip strong {
  color: var(--gold);
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.4vw, 2.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 88px);
  bottom: 34px;
  color: rgba(248, 226, 189, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(82px, 10vw, 144px) clamp(18px, 5vw, 88px);
}

.mode-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 75, 22, 0.18), transparent 24rem),
    linear-gradient(180deg, #050201, #0d0503);
}

.mode-tile {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(246, 195, 106, 0.24);
  background:
    linear-gradient(180deg, transparent, rgba(5, 2, 1, 0.86)),
    rgba(255, 255, 255, 0.028);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.mode-tile:hover {
  border-color: rgba(255, 211, 124, 0.62);
  filter: brightness(1.05);
  transform: translateY(-3px);
}

.mode-tile span,
.paintball-rule-grid span,
.loadout-board span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mode-tile h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.mode-tile p {
  margin-bottom: 0;
  color: rgba(248, 226, 189, 0.76);
}

.moba-tile {
  background:
    linear-gradient(180deg, rgba(6, 10, 16, 0.18), rgba(5, 2, 1, 0.86)),
    url("assets/moba-3.png") center / cover;
}

.paintball-tile {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 219, 70, 0.3), transparent 7rem),
    radial-gradient(circle at 78% 22%, rgba(30, 184, 139, 0.28), transparent 8rem),
    linear-gradient(180deg, rgba(38, 7, 4, 0.2), rgba(5, 2, 1, 0.88)),
    url("assets/moba/arena.webp") center / cover;
}

.casino-tile {
  background:
    linear-gradient(180deg, rgba(12, 4, 2, 0.16), rgba(5, 2, 1, 0.88)),
    url("assets/casino-2.png") center / cover;
}

.section-heading {
  max-width: 1080px;
}

.section-heading > p:not(.kicker),
.world-copy p,
.battle-card p,
.system-grid p,
.casino-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-world {
  background:
    radial-gradient(circle at 92% 18%, rgba(26, 138, 131, 0.22), transparent 28rem),
    linear-gradient(180deg, var(--black), #100907);
}

.world-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  margin-top: 44px;
}

.world-copy {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.world-copy ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.world-copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(248, 226, 189, 0.84);
}

.world-copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--ember);
  box-shadow: 0 0 18px rgba(255, 75, 22, 0.72);
  transform: rotate(45deg);
}

.map-stack {
  position: relative;
  min-height: 580px;
}

.shot,
.mini-showcase figure {
  margin: 0;
  border: 1px solid rgba(246, 195, 106, 0.24);
  background: #070302;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot img,
.wide-showcase img,
.mini-showcase img,
.casino-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-large {
  position: absolute;
  inset: 0 12% 82px 0;
}

.shot-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 340px;
}

figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  border: 1px solid rgba(246, 195, 106, 0.28);
  background: rgba(5, 2, 1, 0.78);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.battle {
  background:
    radial-gradient(circle at 20% 10%, rgba(44, 121, 164, 0.18), transparent 25rem),
    radial-gradient(circle at 82% 18%, rgba(255, 75, 22, 0.2), transparent 28rem),
    #080605;
}

.battle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.battle-card {
  padding: 28px;
  border: 1px solid rgba(95, 177, 232, 0.32);
  background:
    linear-gradient(145deg, rgba(31, 78, 112, 0.24), rgba(6, 8, 14, 0.78)),
    rgba(255, 255, 255, 0.035);
}

.card-number {
  display: block;
  margin-bottom: 18px;
  color: #9bd5ff;
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  text-shadow: 0 0 24px rgba(95, 177, 232, 0.35);
}

.battle-card strong {
  display: block;
  margin-bottom: 8px;
  color: #f2f8ff;
  font-size: 1.15rem;
}

.wide-showcase {
  height: min(58vw, 690px);
  min-height: 420px;
  border: 1px solid rgba(95, 177, 232, 0.32);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mini-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.mini-showcase figure {
  position: relative;
  height: 320px;
}

.systems {
  background:
    linear-gradient(180deg, #080605, #120604),
    var(--near-black);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.system-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 75, 22, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.025);
}

.system-grid span {
  display: block;
  margin-bottom: 54px;
  color: rgba(246, 195, 106, 0.48);
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 900;
}

.paintball-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 204, 54, 0.18), transparent 22rem),
    radial-gradient(circle at 72% 14%, rgba(36, 179, 138, 0.18), transparent 26rem),
    linear-gradient(180deg, #080605, #120604);
}

.paintball-arena-card {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(246, 195, 106, 0.26);
  background: #050201;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.paintball-arena-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.paintball-arena-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(5, 2, 1, 0.72)),
    radial-gradient(circle at 72% 18%, rgba(255, 75, 22, 0.22), transparent 18rem);
  pointer-events: none;
}

.paint-splatter {
  position: absolute;
  z-index: 2;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 48% 52% 43% 57%;
  filter: blur(0.5px) saturate(1.2);
  opacity: 0.78;
  mix-blend-mode: screen;
}

.splatter-a {
  top: 12%;
  left: 10%;
  background: radial-gradient(circle, rgba(255, 212, 65, 0.9), rgba(255, 75, 22, 0.32) 58%, transparent 70%);
}

.splatter-b {
  right: 11%;
  bottom: 16%;
  width: 210px;
  background: radial-gradient(circle, rgba(32, 213, 143, 0.8), rgba(26, 138, 131, 0.28) 60%, transparent 72%);
}

.splatter-c {
  right: 34%;
  top: 28%;
  width: 120px;
  background: radial-gradient(circle, rgba(118, 169, 255, 0.72), rgba(34, 70, 185, 0.24) 58%, transparent 72%);
}

.paintball-copy {
  max-width: 650px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-pills span {
  padding: 9px 12px;
  border: 1px solid rgba(246, 195, 106, 0.24);
  background: rgba(246, 195, 106, 0.08);
  color: #ffd992;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.casino {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 70% 10%, rgba(26, 138, 131, 0.2), transparent 28rem),
    linear-gradient(180deg, #120604, #090302);
}

.casino-art {
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(246, 195, 106, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.casino-copy {
  max-width: 640px;
}

.casino-games {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.casino-games span {
  padding: 10px 13px;
  border: 1px solid rgba(246, 195, 106, 0.28);
  background: rgba(246, 195, 106, 0.08);
  color: #ffd992;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 88px);
  background:
    linear-gradient(90deg, rgba(5, 2, 1, 0.92), rgba(5, 2, 1, 0.68)),
    url("assets/banner.png") center / cover;
}

.final-cta h2,
.final-cta p {
  max-width: 920px;
}

.notify-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 215, 147, 0.72);
  background:
    linear-gradient(180deg, #ffd37c, #b76420);
  color: #190704;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(255, 75, 22, 0.28);
}

.notify-button:hover {
  filter: brightness(1.08);
}

.inline-cta,
.ghost-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(246, 195, 106, 0.46);
  background: rgba(246, 195, 106, 0.08);
  color: #ffd992;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inline-cta:hover,
.ghost-button:hover {
  border-color: rgba(255, 211, 124, 0.78);
  background: rgba(255, 75, 22, 0.16);
}

.wide-showcase-link {
  display: block;
  transition: border-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.wide-showcase-link:hover {
  border-color: rgba(246, 195, 106, 0.56);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 88px);
  color: rgba(248, 226, 189, 0.54);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moba-page {
  background:
    radial-gradient(circle at 20% -8%, rgba(255, 75, 22, 0.2), transparent 34rem),
    radial-gradient(circle at 84% 10%, rgba(26, 138, 131, 0.17), transparent 28rem),
    linear-gradient(180deg, #040201, #0e0503 34rem, #070403);
}

.moba-page .site-header {
  background: #000;
}

.paintball-page {
  background:
    radial-gradient(circle at 18% -8%, rgba(255, 204, 54, 0.2), transparent 34rem),
    radial-gradient(circle at 86% 6%, rgba(32, 213, 143, 0.16), transparent 30rem),
    linear-gradient(180deg, #040201, #120604 34rem, #070403);
}

.paintball-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  align-items: center;
  padding: clamp(176px, 15vw, 212px) clamp(24px, 5vw, 88px) 44px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 212, 65, 0.2), transparent 18rem),
    radial-gradient(circle at 82% 22%, rgba(32, 213, 143, 0.18), transparent 20rem),
    radial-gradient(circle at 50% 100%, rgba(255, 75, 22, 0.2), transparent 26rem),
    linear-gradient(135deg, #050201 0%, #150604 48%, #030201 100%);
  overflow: hidden;
}

.paintball-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 2, 1, 0.08), #050201 96%);
  background-size: 72px 72px, 72px 72px, auto;
  pointer-events: none;
}

.paintball-hero-shell {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(246, 195, 106, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(5, 2, 1, 0.36);
  box-shadow: var(--shadow);
}

.paintball-hero-copy {
  width: 100%;
}

.paintball-logo {
  width: min(420px, 100%);
  max-height: 128px;
  margin: 0 auto 14px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.68));
}

.paintball-hero-copy {
  text-align: center;
}

.paintball-hero-copy h1,
.paintball-hero-copy .hero-copy {
  margin-right: auto;
  margin-left: auto;
}

.paintball-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 4vw, 4.45rem);
}

.paintball-hero-copy .hero-copy {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.paintball-hero-copy .hero-actions {
  justify-content: center;
  margin-top: 18px;
}

.paintball-beta-card {
  justify-self: center;
  width: min(760px, 100%);
  padding: 16px 22px;
  border: 1px solid rgba(246, 195, 106, 0.32);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 212, 65, 0.2), transparent 12rem),
    linear-gradient(180deg, rgba(26, 138, 131, 0.12), rgba(246, 195, 106, 0.06)),
    rgba(5, 2, 1, 0.78);
  box-shadow: var(--shadow);
  text-align: center;
}

.paintball-beta-card span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.paintball-beta-card strong {
  display: block;
  margin: 5px 0 8px;
  color: #ffe1a1;
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.paintball-beta-card p,
.paintball-rules p,
.paintball-loadout p,
.paintball-copy p {
  color: var(--muted);
}

.paintball-rules {
  background:
    linear-gradient(180deg, #050201, #0c0503);
}

.paintball-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.paintball-rule-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(246, 195, 106, 0.22);
  background:
    radial-gradient(circle at 80% 18%, rgba(32, 213, 143, 0.12), transparent 11rem),
    linear-gradient(180deg, rgba(255, 204, 54, 0.08), rgba(255, 255, 255, 0.025));
}

.paintball-rule-grid span {
  display: block;
  margin-bottom: 42px;
  color: rgba(246, 195, 106, 0.55);
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.paintball-loadout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 204, 54, 0.16), transparent 28rem),
    linear-gradient(180deg, #0c0503, #070302);
}

.paintball-loadout > div {
  max-width: 880px;
}

.loadout-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  min-height: 320px;
  align-items: stretch;
}

.loadout-board span {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px solid rgba(246, 195, 106, 0.24);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 212, 65, 0.18), transparent 8rem),
    rgba(255, 255, 255, 0.028);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.moba-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: clamp(176px, 15vw, 212px) clamp(24px, 5vw, 88px) 86px;
  background:
    radial-gradient(circle at 74% 36%, rgba(26, 138, 131, 0.22), transparent 22rem),
    radial-gradient(circle at 20% 32%, rgba(255, 75, 22, 0.34), transparent 26rem),
    linear-gradient(115deg, #050201 0%, #160704 48%, #040201 100%);
  overflow: hidden;
}

.moba-hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.moba-hero-vignette {
  background:
    linear-gradient(90deg, rgba(4, 2, 1, 0.95), rgba(4, 2, 1, 0.76) 48%, rgba(4, 2, 1, 0.42)),
    linear-gradient(180deg, rgba(4, 2, 1, 0.08), rgba(4, 2, 1, 0.52) 68%, #050201);
}

.moba-hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(320px, 410px);
  justify-content: center;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.moba-title-block {
  max-width: 740px;
}

.moba-title-block h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 4.8vw, 5.8rem);
}

.moba-mode-logo {
  width: min(620px, 100%);
  margin: 0 0 24px;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.74)) drop-shadow(0 0 22px rgba(255, 75, 22, 0.26));
}

.moba-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.moba-actions .notify-button,
.moba-actions .ghost-button {
  margin-top: 0;
}

.moba-beta-card {
  justify-self: center;
  width: min(410px, 100%);
  padding: 24px;
  border: 1px solid rgba(246, 195, 106, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 75, 22, 0.16), rgba(246, 195, 106, 0.06)),
    rgba(5, 2, 1, 0.76);
  box-shadow: var(--shadow);
  text-align: center;
}

.moba-beta-card span,
.moba-hero-card span,
.item-panel span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.moba-beta-card strong {
  display: block;
  margin: 8px 0 14px;
  color: #ffe1a1;
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.moba-beta-card p,
.arena-copy p,
.moba-final p,
.moba-hero-card p,
.item-panel p {
  color: var(--muted);
}

.moba-intro {
  background:
    linear-gradient(180deg, #050201, #0b0604),
    var(--black);
}

.moba-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.moba-rule-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(246, 195, 106, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 75, 22, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.moba-rule-grid span {
  display: block;
  min-height: 52px;
  margin-bottom: 34px;
  color: #ffd992;
  font-family: 'Seraphon', Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 900;
  line-height: 0.94;
}

.moba-rule-grid h3,
.moba-rule-grid p {
  margin-bottom: 0;
}

.moba-rule-grid p {
  color: rgba(248, 226, 189, 0.72);
}

.moba-rule-grid p strong {
  color: #ffe1a1;
  text-transform: uppercase;
}

.arena-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 84% 32%, rgba(26, 138, 131, 0.18), transparent 28rem),
    #080403;
}

.arena-copy {
  max-width: 620px;
}

.arena-frame {
  position: relative;
  margin: 0;
  min-height: 420px;
  border: 1px solid rgba(26, 138, 131, 0.42);
  background: #020807;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.arena-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.06);
}

.heroes-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 75, 22, 0.18), transparent 28rem),
    linear-gradient(180deg, #080403, #0e0604);
}

.hero-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.moba-hero-card {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 20px;
  min-height: 310px;
  padding: 16px;
  border: 1px solid rgba(246, 195, 106, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #080403;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.moba-hero-card.fire { border-color: rgba(255, 96, 38, 0.34); }
.moba-hero-card.ice { border-color: rgba(132, 202, 255, 0.34); }
.moba-hero-card.storm { border-color: rgba(124, 174, 255, 0.34); }
.moba-hero-card.shadow { border-color: rgba(161, 105, 255, 0.34); }
.moba-hero-card.poison { border-color: rgba(112, 190, 89, 0.34); }
.moba-hero-card.sea { border-color: rgba(108, 172, 176, 0.34); }
.moba-hero-card.steel { border-color: rgba(203, 186, 153, 0.34); }
.moba-hero-card.holy { border-color: rgba(255, 218, 134, 0.4); }
.moba-hero-card.music { border-color: rgba(255, 166, 74, 0.34); }
.moba-hero-card.magma { border-color: rgba(255, 75, 22, 0.44); }

.hero-portrait {
  width: 185px;
  height: 185px;
  border: 1px solid rgba(246, 195, 106, 0.22);
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.46);
}

.hero-card-copy {
  min-width: 0;
  padding-top: 4px;
}

.hero-card-copy h3 {
  margin-top: 5px;
  margin-bottom: 8px;
}

.skill-strip {
  grid-column: 1 / -1;
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: left center;
  background: rgba(0, 0, 0, 0.18);
}

.ability-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 14px 16px;
  border-top: 1px solid rgba(246, 195, 106, 0.15);
  background:
    linear-gradient(180deg, rgba(246, 195, 106, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.14);
  list-style: none;
}

.ability-list li {
  color: rgba(248, 226, 189, 0.72);
  font-size: 0.9rem;
  line-height: 1.42;
}

.ability-list strong {
  color: #ffe1a1;
  font-weight: 950;
}

.items-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(246, 195, 106, 0.13), transparent 30rem),
    linear-gradient(180deg, #0e0604, #070302);
}

.item-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 38px;
}

.item-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(246, 195, 106, 0.22);
  background: rgba(255, 255, 255, 0.026);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.item-panel.featured {
  grid-row: span 2;
}

.item-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
}

.item-panel h3 {
  margin-top: 5px;
  margin-bottom: 8px;
}

.relic-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.major-artifact-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 22px;
}

.relic-row img,
.major-artifact-gallery img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(246, 195, 106, 0.18);
  background: rgba(0, 0, 0, 0.22);
  object-fit: cover;
  object-position: top center;
}

.major-artifact-gallery img {
  max-height: 720px;
  aspect-ratio: auto;
  object-fit: contain;
}

.major-artifact-gallery img:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(680px, 100%);
}

.moba-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 2, 1, 0.94), rgba(5, 2, 1, 0.72)),
    url("assets/moba/arena.webp") center / cover;
}

.moba-final h2,
.moba-final p {
  max-width: 930px;
}

@media (max-width: 1040px) {
  nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-banner {
    justify-self: end;
  }

  .world-layout,
  .battle-grid,
  .hero-content,
  .mode-strip,
  .paintball-preview,
  .casino,
  .final-cta,
  .moba-hero-content,
  .arena-section,
  .moba-final,
  .paintball-hero,
  .paintball-loadout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: start;
    gap: 22px;
  }

  .battle-card,
  .casino-copy {
    max-width: 680px;
  }

  .map-stack {
    min-height: 520px;
  }

  .moba-rule-grid,
  .paintball-rule-grid,
  .item-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .major-artifact-gallery {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .hero-roster {
    grid-template-columns: 1fr;
  }

  .moba-beta-card {
    max-width: 620px;
    justify-self: start;
  }

  .paintball-hero-shell {
    grid-template-columns: 1fr;
  }

  .paintball-beta-card {
    justify-self: center;
  }

  .mode-strip {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 6px 12px;
  }

  .brand {
    font-size: 13px;
  }

  .brand img {
    height: 64px;
  }

  .beta-cta img {
    height: 52px;
  }

  .header-banner img {
    height: 56px;
  }

  .hero {
    min-height: 860px;
    padding: 116px 18px 50px;
  }

  .hero::after {
    margin: 116px 12px 24px;
  }

  .hero-logo {
    margin-left: -8px;
    max-height: 210px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .launch-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-scroll {
    display: none;
  }

  .map-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .shot-large,
  .shot-small {
    position: relative;
    inset: auto;
    width: 100%;
    height: 330px;
  }

  .mini-showcase,
  .system-grid,
  .moba-rule-grid,
  .paintball-rule-grid,
  .item-showcase,
  .relic-row {
    grid-template-columns: 1fr;
  }

  .major-artifact-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wide-showcase {
    min-height: 360px;
  }

  .mini-showcase figure {
    height: 260px;
  }

  .system-grid article {
    min-height: 0;
  }

  .system-grid span {
    margin-bottom: 32px;
  }

  .moba-hero {
    min-height: auto;
    padding: 116px 18px 54px;
  }

  .paintball-hero {
    min-height: auto;
    padding: 116px 18px 54px;
  }

  .paintball-hero-shell {
    padding: 24px;
  }

  .moba-hero-content {
    gap: 24px;
  }

  .moba-mode-logo {
    width: min(520px, 100%);
  }

  .moba-rule-grid article {
    min-height: 0;
  }

  .moba-rule-grid span {
    min-height: 0;
    margin-bottom: 22px;
  }

  .arena-frame,
  .arena-frame img {
    min-height: 340px;
  }

  .moba-hero-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 12px;
  }

  .hero-portrait {
    width: 132px;
    height: 132px;
  }

  .skill-strip {
    height: 76px;
  }

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

  .paintball-arena-card,
  .paintball-arena-card img {
    min-height: 360px;
  }

  .loadout-board {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
    min-height: 220px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wide-showcase {
    min-height: 300px;
  }

  .notify-button,
  .ghost-button {
    width: 100%;
  }

  .moba-hero-card {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .skill-strip {
    height: auto;
    max-height: 92px;
  }

  .major-artifact-gallery {
    grid-template-columns: 1fr;
  }

  .major-artifact-gallery img:last-child:nth-child(odd) {
    width: 100%;
  }

  .mode-tile {
    min-height: 260px;
  }

  .loadout-board {
    grid-template-columns: 1fr;
  }

  .loadout-board span {
    min-height: 64px;
    writing-mode: horizontal-tb;
    transform: none;
  }
}

/* === Banner-matched flame gradient text (Akasha 2026-06-17) ===================
   Reproduces the wordmark's gold->ember->deep-orange vertical gradient and applies
   it to large text, the medium copy under it, and the nav links. Buttons, bordered
   chips/pills, and small label spans are intentionally left in their own styling.
   Placed last so it overrides the scattered solid color rules by source order. */
h1, h2, h3,
.kicker,
.hero-copy,
.section-heading > p:not(.kicker),
.world-copy p, .world-copy li,
.battle-card p,
.system-grid p,
.casino-copy p,
.final-cta p,
.mode-tile p,
.paintball-copy p,
.paintball-rules p,
.paintball-loadout p,
.paintball-beta-card p,
.arena-copy p,
.moba-final p,
.moba-beta-card p,
.moba-hero-card p,
.moba-rule-grid p,
.item-panel p,
.ability-list li,
nav a {
  background: linear-gradient(180deg, #FFE08A 0%, #FBA23A 16%, #F4861C 42%, #EC5E10 72%, #DB3F05 100%);
  background-repeat: repeat-y;
  background-size: 100% 1.25em;  /* fallback */
  background-size: 100% 1lh;     /* one full gradient per text line */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* inline emphasis inside gradient text must not inherit the transparent fill */
h1 *, h2 *, h3 *, p *, li *, .hero-copy * {
  -webkit-text-fill-color: #ffd992;
}

/* === Beta access modal === */
.beta-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.beta-modal[hidden] { display: none; }

.beta-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 1, 0, 0.82);
  backdrop-filter: blur(4px);
}

.beta-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(246, 195, 106, 0.42);
  background: linear-gradient(180deg, rgba(22, 9, 4, 0.97), rgba(6, 3, 2, 0.98));
  box-shadow: 0 0 80px rgba(255, 75, 22, 0.3), var(--shadow);
}

.beta-modal-x {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.beta-modal-x:hover { color: var(--gold); }

.beta-modal-panel h2 { margin-bottom: 12px; }
.beta-modal-panel p { color: var(--muted); margin-bottom: 0; }

.beta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.beta-input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(246, 195, 106, 0.4);
  background: rgba(0, 0, 0, 0.5);
  color: var(--bone);
  font-size: 16px;
}

.beta-input:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 2px rgba(255, 75, 22, 0.28);
}

.beta-form .notify-button { width: 100%; margin-top: 0; }
.beta-modal-done { text-align: center; }
.beta-modal-done .notify-button { margin-top: 20px; }

.beta-img-submit {
  display: block;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
  transition: filter 0.15s ease, transform 0.12s ease;
}
.beta-img-submit img {
  display: block;
  width: 100%;
  height: auto;
}
.beta-img-submit:hover { filter: brightness(1.1); }
.beta-img-submit:active { transform: translateY(1px); }

/* === Site display font: Seraphon (Akasha 2026-06-17) === */
@font-face {
  font-family: 'Seraphon';
  src: url('assets/fonts/seraphon.ttf') format('truetype');
  font-display: swap;
}

h1, h2, h3,
.kicker,
.hero-copy,
.section-heading > p:not(.kicker),
.world-copy p, .world-copy li,
.battle-card p,
.system-grid p,
.casino-copy p,
.final-cta p,
.mode-tile p,
.paintball-copy p,
.paintball-rules p,
.paintball-loadout p,
.paintball-beta-card p,
.arena-copy p,
.moba-final p,
.moba-beta-card p,
.moba-hero-card p,
.moba-rule-grid p,
.item-panel p,
.ability-list li,
nav a,
.beta-modal-panel {
  font-family: 'Seraphon', Georgia, serif;
}

/* === Feathered section transitions: soft fade to base black at each seam === */
.section,
.final-cta,
.moba-final {
  position: relative;
  isolation: isolate;
}

.section::before, .section::after,
.final-cta::before, .final-cta::after,
.moba-final::before, .moba-final::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 110px;
  z-index: -1;
  pointer-events: none;
}

.section::before,
.final-cta::before,
.moba-final::before {
  top: 0;
  background: linear-gradient(to bottom, #050201, rgba(5, 2, 1, 0));
}

.section::after,
.final-cta::after,
.moba-final::after {
  bottom: 0;
  background: linear-gradient(to top, #050201, rgba(5, 2, 1, 0));
}

/* single full-width draft screenshot replacing the old two mini tiles */
.mini-showcase figure.draft-shot {
  grid-column: 1 / -1;
  height: auto;
}

.mini-showcase figure.draft-shot img {
  height: auto;
  object-fit: contain;
}

.learnmore-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  transform: translateX(-30px);
}

.feature-lead {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flight-box {
  grid-column: span 2;
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  align-items: center;
}

.casino-box {
  align-items: flex-start;
}

.tortuga-box {
  align-items: flex-start;
}

.tortuga-box img {
  width: auto;
  max-width: 42%;
  max-height: 300px;
}

.newskills-box {
  align-items: flex-start;
}

.dolphin-box img {
  width: auto;
  max-width: 280px;
  max-height: 270px;
}

.economy-box {
  grid-column: 1 / -1;
  text-align: center;
}

.economy-box p {
  max-width: 900px;
  margin: 16px auto 0;
  text-align: left;
}

.casino-roulette {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin-top: 24px;
  border: 1px solid rgba(246, 195, 106, 0.28);
}

.modes-title {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.final-cta-actions .beta-cta img {
  height: clamp(84px, 8.5vw, 124px);
  width: auto;
}

.discord-link img {
  width: auto;
  height: clamp(56px, 6vw, 76px);
}

.flight-box .flight-text {
  flex: 1;
  min-width: 0;
  max-width: 640px;
}

.flight-box img {
  width: 46%;
  max-width: 400px;
  height: auto;
  border: 1px solid rgba(246, 195, 106, 0.24);
}

/* portrait class panel: size by height, not width */
.classes-box img {
  width: auto;
  max-width: 45%;
  max-height: 360px;
}

.system-grid article.comp-box {
  padding-top: 18px;
}

.comp-box img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 120px;
  margin: 0 auto 8px;
}

.comp-box img:last-child {
  margin-top: 14px;
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .flight-box { flex-direction: column; }
  .flight-box img { width: 100%; max-width: none; }
}

.learnmore-cta img {
  height: clamp(54px, 6vw, 78px);
  width: auto;
}
