:root {
  --bg: #111111;
  --bg-surface: #1A1A1A;
  --bg-elevated: #222222;
  --amber: #F59E0B;
  --amber-dim: #B4720A;
  --amber-glow: #FBBF24;
  --off-white: #F5F0E8;
  --muted: #8A8A8A;
  --divider: rgba(245, 158, 11, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-board-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245, 158, 11, 0.07) 0%, transparent 70%),
    linear-gradient(180deg, #111111 0%, #1A1A1A 100%);
  z-index: 0;
}

.hero-board-shape::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 520px;
  height: 280px;
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 4px;
}

.hero-board-shape::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 262px);
  transform: translate(0, -50%);
  width: 2px;
  height: 280px;
  background: rgba(245, 158, 11, 0.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 14px;
  border-radius: 2px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 0 80px rgba(245, 158, 11, 0.2);
}

.hero-tagline {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-play {
  display: inline-block;
  background: var(--amber);
  color: #111;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-play:hover {
  background: var(--amber-glow);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.4);
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 3px 12px;
  border-radius: 2px;
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--off-white);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

.section-body-centered {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ── POWERS ── */
.powers {
  background: var(--bg-surface);
  padding: 100px 24px;
}

.powers-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.powers .section-heading {
  max-width: 520px;
}

.powers .section-body {
  margin-bottom: 56px;
}

.powers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--divider);
}

.power-card {
  background: var(--bg-surface);
  padding: 40px 36px;
}

.power-icon {
  width: 48px;
  height: 48px;
  color: var(--amber);
  margin-bottom: 20px;
}

.power-icon svg {
  width: 100%;
  height: 100%;
}

.power-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 12px;
}

.power-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── COMPETITIVE ── */
.competitive {
  background: var(--bg);
  padding: 100px 24px;
}

.competitive-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.competitive-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--off-white);
  margin-bottom: 20px;
}

.competitive-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.stats-row {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--amber);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BOARD DIAGRAM ── */
.competitive-board {
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-diagram {
  width: 320px;
  height: 200px;
  display: grid;
  grid-template-columns: 1fr 16px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  position: relative;
}

.board-quadrant {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.top-left { border-bottom: 1px solid rgba(245,158,11,0.12); }
.bottom-left { border-top: 1px solid rgba(245,158,11,0.12); }
.top-right { border-bottom: 1px solid rgba(245,158,11,0.12); }
.bottom-right { border-top: 1px solid rgba(245,158,11,0.12); }

.point {
  background: rgba(245, 158, 11, 0.06);
  border-radius: 2px;
  position: relative;
}

.point.p1, .point.p12 { background: rgba(245,158,11,0.18); }
.point.p5, .point.p11 { background: rgba(245,158,11,0.1); }
.point.p8, .point.p15 { background: rgba(245,158,11,0.22); }

.bar-center {
  background: rgba(245,158,11,0.15);
  border-radius: 1px;
}

/* ── CHARACTERS ── */
.characters {
  background: var(--bg-surface);
  padding: 100px 24px;
}

.characters-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.characters .section-heading {
  margin-bottom: 16px;
}

.characters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.char-card {
  border: 1px solid var(--divider);
  padding: 40px 32px;
  text-align: left;
  position: relative;
  background: var(--bg);
  transition: border-color 0.2s;
}

.char-card:hover {
  border-color: rgba(245,158,11,0.4);
}

.char-sigil {
  width: 48px;
  height: 48px;
  color: var(--amber);
  margin-bottom: 24px;
}

.char-sigil svg {
  width: 100%;
  height: 100%;
}

.char-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 6px;
}

.char-archetype {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.char-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg);
  padding: 100px 24px;
  border-top: 1px solid var(--divider);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--off-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing-inner p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.closing-inner .btn-play {
  margin-top: 40px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--divider);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--off-white);
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.footer-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  max-width: 340px;
  text-align: right;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .competitive-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .competitive-board { display: none; }
  .stats-row { gap: 32px; }
  .characters-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; max-width: none; }
  .powers-grid { grid-template-columns: 1fr; }
}
