:root {
  --bg: #050301;
  --bg-elev: #120c08;
  --panel: #1a120c;
  --amber: #e8a317;
  --amber-dim: #b87a0f;
  --ink: #ffffff;
  --muted: #c4b5a5;
  --line: rgba(255, 255, 255, 0.12);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --nav-h: 64px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.55;
}

body.is-preloading {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

/* ========== GTA LOADING SCREEN ========== */
#preload {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#preload.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.load-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.load-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.08);
  animation: load-ken 14s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}

@keyframes load-ken {
  from {
    transform: scale(1.08) translate(0, 0);
  }
  to {
    transform: scale(1.18) translate(-1.5%, -1%);
  }
}

.load-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.load-hud {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  pointer-events: none;
}

.load-hud > * {
  pointer-events: auto;
}

.load-brand-block {
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.load-logo {
  width: min(420px, 85vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.85));
  margin-bottom: 0.75rem;
}

.load-eyebrow {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.load-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.load-sub {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ddd;
}

.load-meter {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(420px, 100%);
  margin-bottom: 1rem;
}

.load-spinner {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.load-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.load-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--amber);
  transition: width 0.2s ease;
}

.load-pct {
  min-width: 2.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #ccc;
}

.load-continue {
  align-self: flex-start;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  cursor: pointer;
  animation: pulse-border 1.6s ease-in-out infinite;
  transition: background 0.2s ease, color 0.2s ease;
}

.load-continue:hover {
  background: #fff;
  color: #000;
  animation: none;
}

@keyframes pulse-border {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

/* ========== NAV (improved Rockstar-style) ========== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: var(--nav-h);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
}

.nav-mark {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(245, 197, 24, 0.45);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-brand-top {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: #fff;
  /* GTA-style layered outline */
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    -2px 0 0 #000,
    2px 0 0 #000,
    0 -2px 0 #000,
    0 2px 0 #000,
    0 0 0 1px #fff,
    3px 3px 0 #2a2a2a,
    -3px 3px 0 #2a2a2a,
    3px -3px 0 #2a2a2a,
    -3px -3px 0 #2a2a2a;
}

.nav-brand-bot {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 0 #000, 0 0 8px rgba(0, 0, 0, 0.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  justify-self: center;
}

.nav-links a {
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfcfcf;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover {
  color: #fff;
  border-bottom-color: var(--amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  justify-self: end;
}

.nav-social {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  color: #ddd;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.nav-social:hover {
  color: #000;
  background: var(--amber);
  border-color: var(--amber);
}

.btn-nav {
  padding: 0.45rem 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #000;
  background: var(--amber);
  border: 1px solid var(--amber-dim);
  transition: transform 0.12s ease, background 0.15s ease;
  line-height: 1;
}

.btn-nav:hover {
  background: #ffe066;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: #050505;
}

.nav-drawer a {
  padding: 0.75rem 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

.btn-outline {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.btn-solid {
  color: #000;
  background: var(--amber);
  border-color: var(--amber-dim);
}

.btn-solid:hover {
  background: #ffe066;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-drift 22s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.06);
  }
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 7vw, 5rem);
  max-width: 780px;
}

.hero-logo-wrap {
  margin: 0 0 0.35rem;
}

.hero-logo {
  width: min(560px, 92vw);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.85));
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.65);
}

.hero-line {
  margin: 0.85rem 0 1.35rem;
  max-width: 36ch;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: #d4d4d4;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ========== SHARED ========== */
.section {
  padding: clamp(2.75rem, 5.5vw, 4.25rem) clamp(1rem, 4vw, 2.5rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 720px;
}

.section.story {
  padding-bottom: 0;
}

.section.story .section-inner.narrow {
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.story-video-wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.story-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0a;
  border: 1px solid rgba(245, 197, 24, 0.28);
}

.story-video-caption {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.section-lede {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.center {
  text-align: center;
}

.eyebrow.center {
  text-align: center;
}

.section-lede.center {
  margin-left: auto;
  margin-right: auto;
}

.text-link {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--amber);
  border-bottom: 1px solid rgba(245, 197, 24, 0.45);
}

.text-link:hover {
  color: #ffe066;
}

.ken-burns {
  animation: media-ken 18s ease-in-out infinite alternate;
}

@keyframes media-ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* ========== SPLIT SECTIONS ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  background: #050505;
}

.split-media {
  overflow: hidden;
  background: #0a0a0a;
  min-height: 480px;
  max-height: 620px;
}

.split-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center center;
}

.split-img-portrait {
  object-position: center center;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.25rem);
  background: #000;
}

.lore-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lore-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--amber);
}

.lore-list strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.lore-list span {
  color: var(--muted);
}

/* ========== FEATURE ROWS ========== */
.feature-rows {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  background: #080808;
  border-bottom: 1px solid var(--line);
  min-height: 0;
}

.feature-row.reverse {
  direction: rtl;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3.5vw, 2.75rem);
}

.feature-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: 0.05em;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 38ch;
  font-size: 0.98rem;
  line-height: 1.55;
}

.feature-media {
  overflow: hidden;
  min-height: 260px;
  max-height: 340px;
  aspect-ratio: 16 / 10;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== SERVER ========== */
.server {
  padding-top: 0;
}

.server-panel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.server-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

.server-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(2rem, 5vw, 3.25rem);
}

.server-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.server-meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cfcfcf;
}

.pill {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #000;
  background: var(--amber);
}

.server-features {
  max-width: 1400px;
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.server-card {
  background: #080808;
  display: flex;
  flex-direction: column;
}

.server-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.server-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server-card-body {
  padding: 1.1rem 1.2rem 1.35rem;
  flex: 1;
}

.server-card-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}

.server-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.server-join {
  max-width: 1400px;
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.server-join-copy,
.server-join-cta {
  background: #0a0a0a;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.server-join-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.join-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.join-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--amber);
  line-height: 1;
  padding-top: 0.15rem;
}

.join-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.join-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.server-join-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  background:
    linear-gradient(160deg, rgba(245, 197, 24, 0.08), transparent 55%),
    #0a0a0a;
}

.server-join-note {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .server-features,
  .server-join {
    grid-template-columns: 1fr;
  }
}

/* ========== BUY ========== */
.buy {
  background: #050505;
}

.buy-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.buy-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--panel);
  border: 1px solid var(--line);
}

.ca-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  background: #000;
  border: 1px dashed rgba(245, 197, 24, 0.35);
}

.ca-label {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.ca-value {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--muted);
  word-break: break-all;
}

.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.buy-art {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.buy-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 360px;
  max-height: 480px;
}

.buy-art-portrait {
  object-position: center center !important;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 3.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #000;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: #fff;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    -2px 0 0 #000,
    2px 0 0 #000,
    0 -2px 0 #000,
    0 2px 0 #000,
    3px 3px 0 #2a2a2a,
    -3px 3px 0 #2a2a2a,
    3px -3px 0 #2a2a2a,
    -3px -3px 0 #2a2a2a;
}

.footer-tag {
  margin: 0.4rem 0 1.25rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ddd;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: var(--amber);
  color: var(--amber);
}

.footer-disclaimer {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 0.78rem;
  color: #666;
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .nav-social {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .split,
  .feature-row,
  .feature-row.reverse,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .split-media,
  .feature-media {
    min-height: 240px;
    max-height: none;
  }

  .split-img {
    min-height: 240px;
  }

  .feature-media {
    aspect-ratio: 16 / 10;
  }

  .buy-art img {
    min-height: 280px;
    max-height: none;
  }
}

@media (max-width: 560px) {
  .nav-brand-bot {
    display: none;
  }

  .hero-ctas .btn,
  .buy-links .btn {
    width: 100%;
  }

  .load-continue {
    width: 100%;
  }
}

/* GTA comic-panel edge on section media */
.feature-media,
.server-card-media,
.welcome .split-media,
.buy-art {
  box-shadow: inset 0 0 0 3px #000;
  outline: 2px solid rgba(255, 255, 255, 0.12);
  outline-offset: -5px;
}

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

  .load-art-img,
  .hero-img,
  .ken-burns,
  .server-bg,
  .load-spinner,
  .load-continue {
    animation: none !important;
  }

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