:root {
  --bg: #081018;
  --bg2: #0c1826;
  --panel: #0f1f30;
  --line: #1d3550;
  --teal: #3fd0f0;
  --teal-dim: #2a93b3;
  --gold: #cfa85e;
  --gold-dim: #9a7c42;
  --ink: #d9e4ee;
  --muted: #8fa4b8;
  --serif: 'Cinzel', serif;
  --sans: 'Inter', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Nav */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 16, 24, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.nav img { height: 44px; width: auto; }
.nav .brand {
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase;
}
.nav .brand:hover { color: var(--gold); }
.nav nav { margin-left: auto; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav nav a {
  color: var(--ink); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em;
}
.nav nav a:hover { color: var(--teal); }
.nav nav a.active { color: var(--teal); border-bottom: 2px solid var(--teal); padding-bottom: 2px; }
.nav nav a.nav-cta {
  background: linear-gradient(180deg, #dcb76c, #b18b45);
  color: #14100a; padding: 8px 16px; border-radius: 5px;
  border: 1px solid #e8cd8f; font-weight: 600;
}
.nav nav a.nav-cta:hover { color: #14100a; filter: brightness(1.08); }

/* Buttons */
.btn {
  display: inline-block; padding: 13px 26px;
  border-radius: 6px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.btn-gold {
  background: linear-gradient(180deg, #dcb76c, #b18b45);
  color: #14100a; border: 1px solid #e8cd8f;
}
.btn-gold:hover { filter: brightness(1.08); }
.btn-ghost {
  color: var(--teal); border: 1px solid var(--teal-dim);
  background: rgba(63, 208, 240, 0.06);
}
.btn-ghost:hover { background: rgba(63, 208, 240, 0.14); }
.btn-soon {
  color: var(--muted); border: 1px dashed var(--line);
  background: rgba(255,255,255,0.02); cursor: default;
}

/* Hero (home) */
.hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.hero .art {
  position: absolute; inset: 0;
  background: url('/assets/hero.jpg') center right / cover no-repeat;
}
.hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,16,24,0.94) 0%, rgba(8,16,24,0.82) 38%, rgba(8,16,24,0.25) 70%, rgba(8,16,24,0.05) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 64px; padding-bottom: 64px; }

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: 56px 0 48px;
  background: var(--bg2) url('/assets/band.jpg') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.page-hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,16,24,0.92) 0%, rgba(8,16,24,0.7) 60%, rgba(8,16,24,0.4) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }

.kicker {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.12; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.hero h1 { max-width: 14ch; }
p.lede {
  margin-top: 18px; max-width: 52ch;
  font-size: 1.08rem; color: var(--ink);
}
.cta-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.status-pill {
  display: inline-block; margin-bottom: 14px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
  border: 1px solid var(--teal-dim); border-radius: 999px;
  padding: 4px 14px; background: rgba(63, 208, 240, 0.08);
}

/* Sections */
section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .kicker { margin-bottom: 8px; }
h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em;
}
h3.sub {
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em;
  margin: 34px 0 10px;
}
.section-head p { color: var(--muted); max-width: 60ch; margin: 12px auto 0; }
.alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 8px; padding: 26px 22px;
}
.card .glyph {
  font-size: 1.5rem; color: var(--teal); margin-bottom: 12px;
  font-family: var(--serif);
}
.card h3 {
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 8px; letter-spacing: 0.03em;
}
.card p { font-size: 0.9rem; color: var(--muted); }

/* Game cards on home */
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.game-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
}
.game-card .thumb { height: 170px; background: url('/assets/band.jpg') center / cover no-repeat; border-bottom: 1px solid var(--line); }
.game-card .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.game-card h3 {
  font-family: var(--serif); color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 1.2rem;
}
.game-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.game-card .row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* Prose pages (news, about, legal) */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { margin: 0 0 16px; color: var(--ink); }
.prose p.muted, .muted { color: var(--muted); }
.prose h2 { font-size: 1.3rem; margin: 34px 0 12px; text-align: left; }

.post {
  border: 1px solid var(--line); border-radius: 8px; background: var(--panel);
  padding: 28px 30px; margin-bottom: 22px;
}
.post .date { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.post h2 { text-align: left; font-size: 1.25rem; margin-bottom: 12px; }
.post p { color: var(--ink); margin-bottom: 12px; }
.post p:last-child { margin-bottom: 0; }

/* Band divider */
.band { padding: 0; }
.band img { width: 100%; height: 240px; object-fit: cover; object-position: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Follow */
.follow { text-align: center; }
.follow .logo-big { width: 260px; margin: 0 auto 28px; }
.follow ul { list-style: none; margin: 26px auto 34px; max-width: 520px; text-align: left; }
.follow li {
  padding: 10px 0 10px 30px; position: relative;
  color: var(--ink); font-size: 0.98rem;
  border-bottom: 1px solid var(--line);
}
.follow li:last-child { border-bottom: none; }
.follow li::before { content: '\2726'; position: absolute; left: 4px; color: var(--gold); }

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0; text-align: center;
  color: var(--muted); font-size: 0.85rem;
}
footer .fbrand {
  font-family: var(--serif); color: var(--gold-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.9rem; margin-bottom: 6px;
}
footer .flinks { margin-top: 10px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
footer .flinks a { color: var(--muted); }
footer .flinks a:hover { color: var(--teal); }

@media (max-width: 640px) {
  .hero { min-height: 480px; }
  .hero .veil { background: linear-gradient(180deg, rgba(8,16,24,0.55) 0%, rgba(8,16,24,0.9) 75%); }
  .nav nav { gap: 14px; }
  .band img { height: 150px; }
}
