:root {
  --black: #050509;
  --deep: #090911;
  --panel: #0f0f17;
  --panel-soft: #171720;
  --line: #3b3038;
  --red: #e7214f;
  --violet: #8d3cff;
  --pink: #ff2aa8;
  --blue: #5ea8ff;
  --green: #b8e84c;
  --orange: #ff6a1f;
  --paper: #f3ead8;
  --muted: #b8a999;
  --dim: #746a62;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 5%, rgba(141, 60, 255, .25), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(231, 33, 79, .19), transparent 30%),
    linear-gradient(180deg, #050509 0%, #0a0a10 48%, #050509 100%);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}

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

.shell {
  position: relative;
  z-index: 2;
  width: min(1680px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 330px;
  gap: 16px;
  padding: 18px 0 22px;
}

.box,
.hero,
.identity-splash,
.panel,
.feature-row,
.location-card,
.identity-card,
.media-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,17,25,.88), rgba(6,6,11,.88));
}

.box {
  padding: 18px;
  margin-bottom: 16px;
}

.logo {
  color: var(--red);
  font-weight: 900;
  font-size: 64px;
  line-height: .78;
  letter-spacing: .05em;
  text-shadow: 0 0 18px rgba(231, 33, 79, .46);
}

.logo-sub {
  margin-top: 10px;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
}

.tiny {
  color: var(--dim);
  font-size: 12px;
  line-height: 1.45;
}

.label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px;
}

.nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}

.nav a.active,
.nav a:hover {
  color: var(--red);
}

.terminal,
.feed,
.status-line {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

.terminal {
  color: #9cff6f;
  font-size: 14px;
  line-height: 1.65;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px;
}

.feed {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.feed b {
  color: var(--blue);
  font-weight: 400;
}

.status-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.status-line strong {
  color: var(--green);
}

.status-line.offline strong {
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 54px;
  overflow: hidden;
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(5,5,9,.96) 0%, rgba(5,5,9,.72) 45%, rgba(5,5,9,.36) 100%),
    radial-gradient(circle at 73% 28%, rgba(141,60,255,.55), transparent 22%),
    radial-gradient(circle at 62% 42%, rgba(231,33,79,.32), transparent 25%),
    url('/images/main-splash.png'),
    linear-gradient(135deg, #090910, #17121a);
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.title-mark {
  color: var(--red);
  font-size: clamp(74px, 12vw, 178px);
  line-height: .78;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(231,33,79,.44);
}

h1 {
  margin: 12px 0 0;
  color: var(--paper);
  font-size: clamp(34px, 5vw, 76px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  margin: 30px 0 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  border: 1px solid currentColor;
  padding: 14px 18px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: 13px;
  background: rgba(0,0,0,.38);
}

.btn.red {
  color: var(--red);
}

.btn.violet {
  color: var(--violet);
}

.btn.blue {
  color: var(--blue);
}

.page-header,
.identity-splash,
.panel {
  padding: 28px;
  margin-bottom: 16px;
}

.identity-splash {
  min-height: 340px;
  background:
    linear-gradient(90deg, rgba(5,5,9,.78), rgba(5,5,9,.36)),
    url('/images/identities-banner.png'),
    radial-gradient(circle at 48% 25%, rgba(255,42,168,.18), transparent 21%),
    linear-gradient(180deg, rgba(12,12,18,.96), rgba(5,5,9,.96));
  background-size: cover;
  background-position: center;
}

.section-kicker {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 900;
}

.section-title {
  margin: 0;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(26px, 3vw, 46px);
}

.section-copy {
  color: var(--muted);
  line-height: 1.45;
  max-width: 820px;
  margin: 10px 0 0;
  font-size: 17px;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.identity-card {
  min-height: 92px;
  padding: 10px;
  display: grid;
  align-content: center;
  text-align: center;
  background: rgba(0,0,0,.43);
  color: var(--muted);
  font-size: 13px;
}

.identity-card span {
  display: block;
  color: var(--pink);
  font-size: 24px;
  margin-bottom: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.location-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.location-card,
.media-card {
  min-height: 140px;
  padding: 14px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(5,5,9,.20), rgba(5,5,9,.94)),
    radial-gradient(circle at 70% 24%, rgba(141,60,255,.18), transparent 36%),
    #101018;
  background-size: cover;
  background-position: center;
}

.location-card strong,
.feature-row strong,
.media-card strong {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.location-card p,
.feature-row p,
.media-card p,
.box p {
  color: var(--muted);
  line-height: 1.42;
  margin: 8px 0 0;
  font-size: 14px;
}

.feature-row {
  display: block;
  width: 100%;
  min-height: 108px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: rgba(0,0,0,.24);
}

.feature-row.combat { border-left: 3px solid var(--red); }
.feature-row.body { border-left: 3px solid var(--violet); }
.feature-row.harvest { border-left: 3px solid var(--pink); }
.feature-row.build { border-left: 3px solid var(--orange); }
.feature-row.identities { border-left: 3px solid var(--green); }
.feature-row.butterworth { border-left: 3px solid var(--blue); }

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.footer {
  grid-column: 1 / -1;
  color: var(--dim);
  border-top: 1px solid var(--line);
  padding: 18px 0 4px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .shell {
    grid-template-columns: 1fr;
  }

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

  .box {
    margin-bottom: 0;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 18px, 1680px);
  }

  .hero {
    min-height: auto;
    padding: 30px 22px;
  }

  .side,
  .right,
  .two-col,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .identity-grid,
  .location-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer {
    display: block;
  }
}
