/* Dirty Football Boss — shared sub-page theme (matches index.html) */

@font-face {
  font-family: 'Cinzel';
  src: url('/assets/fonts/cinzel-0.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0A0E1A;
  --gold: #C9A84C;
  --gold-bright: #E8C96A;
  --ink: #d8d4c8;
  --muted: #8a8678;
}
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
h1, h2, h3, .brand { font-family: 'Cinzel', serif; }
a { color: var(--gold); text-decoration: none; }
.content a:hover { text-decoration: underline; }

/* ---------- NAV (always solid on sub-pages) ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem;
  background: rgba(10, 14, 26, 0.95);
}
.brand { font-size: 1.05rem; font-weight: 800; color: var(--gold); letter-spacing: .08em; }
.nav-links { display: flex; gap: 1.4rem; align-items: center; }
.nav-links a { color: #9a9586; font-size: .85rem; transition: color .2s; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a.active { color: var(--gold); }
.nav-links a.btn-gold, .nav-links a.btn-gold:hover { color: #1a1206; }

/* ---------- GOLD BUTTON (asset-based) ---------- */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  width: 290px; height: 60px;
  background: url('/assets/ui/btn_gold.webp') center / 100% 100% no-repeat;
  font-family: 'Cinzel', serif; font-weight: 800; font-size: .95rem;
  letter-spacing: .1em; color: #1a1206; text-transform: uppercase;
  transition: transform .25s ease, filter .25s ease;
}
.btn-gold:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.1); text-decoration: none; }
.btn-gold.small { width: 200px; height: 44px; font-size: .72rem; letter-spacing: .14em; }
.btn-gold.mini { width: 140px; height: 38px; font-size: .68rem; letter-spacing: .12em; }

.divider { width: min(880px, 86vw); margin: 0 auto; }
.divider.mid { margin: 3rem auto; }

/* ---------- PAGE HEAD ---------- */
.page-head { text-align: center; padding: 7.5rem 1.5rem 0; }
.kicker {
  font-family: 'Cinzel', serif; color: var(--gold); font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; font-size: .72rem;
}
.page-head h1 {
  margin-top: .8rem;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 800; letter-spacing: .05em; line-height: 1.2;
  color: var(--gold-bright);
  text-shadow: 0 2px 30px rgba(201, 168, 76, .2);
}
.page-head .lede { max-width: 620px; margin: 1rem auto 0; color: var(--muted); }
.page-head .divider { margin-top: 2.4rem; }

/* ---------- CONTENT ---------- */
.content { flex: 1; width: 100%; max-width: 820px; margin: 0 auto; padding: 2.8rem 1.5rem 5rem; }
.content h2 {
  color: var(--gold); font-size: 1.25rem; font-weight: 800;
  letter-spacing: .05em; margin: 2.6rem 0 .7rem;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  color: var(--gold-bright); font-size: 1.02rem; font-weight: 700;
  letter-spacing: .04em; margin: 1.8rem 0 .4rem;
}
.content p { color: #b5b0a0; margin-bottom: 1rem; }
.content ul, .content ol { padding-left: 1.5rem; margin: .5rem 0 1.2rem; }
.content li { color: #b5b0a0; margin-bottom: .5rem; }
.content strong { color: var(--gold-bright); font-weight: 600; }
.updated { color: #6b6759; font-size: .85rem; margin-bottom: 2rem; }

/* Q&A blocks (FAQ) and info blocks (contact, account deletion) */
.qa, .block { margin-bottom: 2.2rem; }
.qa h3, .block h3 { margin-top: 0; }
.qa p, .block p { margin-bottom: .5rem; }

/* Warning block (account deletion) — typographic, no drawn chrome */
.warning { margin: 2rem 0; }
.warning h3 { color: #e05c5c; margin-top: 0; }
.warning p { color: #c4a9a9; }

/* Language switch (privacy, terms) */
.lang-switch { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.8rem; }

/* ---------- FOOTER ---------- */
footer { padding: 2.6rem 1.5rem 3rem; text-align: center; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin: 1.6rem 0 1.1rem; }
.footer-links a { color: #77725f; font-size: .82rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: #4e4a3c; font-size: .76rem; }

@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
  nav { padding: 0.8rem 1rem; }
  .brand { font-size: .82rem; white-space: nowrap; }
  .btn-gold.small { width: 152px; height: 36px; font-size: .6rem; letter-spacing: .1em; }
  .page-head { padding-top: 6.2rem; }
}
