@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Oswald:wght@400;500;600;700&family=Special+Elite&display=swap');

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

:root {
  --gold:       #c9a24b;
  --gold-light: #e3c878;
  --gold-dim:   #8a7333;
  --gold-dark:  #5e470f;
  --bg:         #13120d;
  --bg-card:    #1f1c15;
  --border:     #3a352a;
  --parch:      #e7dcc1;
  --text:       #b3a888;
  --text-dim:   #8a8068;
  --enemy:      #a8332b;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── HERO ─────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: var(--bg);
  background-image: radial-gradient(900px 600px at 50% 0%, #2a2619, #13120d 72%);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19,18,13,0.46) 0%, rgba(19,18,13,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.75rem;
  text-align: center;
  padding: 1rem;
}

h1 {
  font-family: 'Black Ops One', 'Oswald', system-ui, sans-serif;
  font-size: 2.1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--parch);
  text-shadow: 0 0 30px rgba(201,162,75,0.4), 0 4px 18px #000b;
}

.subtitle {
  font-family: 'Special Elite', monospace;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CONTAINER ────────────────────────────────────── */

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* ── SECTIONS ─────────────────────────────────────── */

section { margin: 2rem 0; }

h2 {
  font-family: 'Black Ops One', 'Oswald', system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

p { margin-bottom: 0.9rem; color: var(--text); }

em { color: var(--gold-light); font-style: italic; }

strong { color: var(--parch); }

a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dark);
  transition: color 0.15s, border-color 0.15s;
}

a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }

code {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--gold-light);
  background: rgba(201,162,75,0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  border: 1px solid rgba(201,162,75,0.18);
}

ul { padding-left: 1.5rem; margin-bottom: 0.9rem; }
ul li { margin-bottom: 0.4rem; color: var(--text); }
ul li::marker { color: var(--gold-dim); }

/* ── TABLE ────────────────────────────────────────── */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

th {
  font-family: 'Black Ops One', 'Oswald', system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--gold-dark);
  text-align: left;
}

td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(201,162,75,0.08);
  color: var(--text);
  vertical-align: top;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(201,162,75,0.04); }

/* ── DIVIDER ──────────────────────────────────────── */

.divider {
  text-align: center;
  color: var(--gold-dark);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin: 1.5rem 0;
  opacity: 0.7;
}

/* ── EFFECTIVE DATE ───────────────────────────────── */

.effective {
  font-family: 'Special Elite', monospace;
  font-size: 0.76rem;
  color: var(--gold-dim);
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

/* ── FOOTER ───────────────────────────────────────── */

footer { text-align: center; padding-top: 2rem; }

.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ── RESPONSIVE ───────────────────────────────────── */

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; letter-spacing: 3px; }
  .hero { height: 240px; }
  .container { padding: 1.5rem 1rem 3rem; }
  table { font-size: 0.82rem; }
  td, th { padding: 0.45rem 0.5rem; }
}
