/* ─── SHARED LEGAL PAGE STYLES ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #000000;
  --red: #C8102E;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-mid: #9CA3AF;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV BAR ─────────────────────────────────────────────────────── */
.legal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.legal-nav-brand svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.5);
}

.legal-nav-brand span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-nav-brand .nav-warrior {
  color: var(--red);
}

.legal-nav-links {
  display: flex;
  gap: 24px;
}

.legal-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-nav-links a:hover {
  color: var(--white);
}

.legal-nav-links a.active {
  color: var(--red);
}

/* ─── LEGAL CONTENT ───────────────────────────────────────────────── */
.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.legal-header {
  margin-bottom: 48px;
  text-align: center;
}

.legal-header h1 {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}

.legal-header .legal-date {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul, .legal-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-body li {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.legal-body a:hover {
  opacity: 0.8;
}

.legal-body strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.legal-body .highlight-box {
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.legal-body .highlight-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.legal-footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.legal-footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.legal-footer a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-footer a:hover {
  color: rgba(255,255,255,0.5);
}

/* ─── MOBILE ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .legal-nav-links {
    gap: 14px;
  }
  .legal-nav-links a {
    font-size: 12px;
  }
  .legal-container {
    padding: 100px 20px 60px;
  }
}
