:root {
  --yellow: #DFFF00;
  --yellow-end: #D4F000;
  --yellow-dark: #7A8C00;
  --yellow-muted: rgba(223, 255, 0, 0.15);
  --purple: #9B59B6;
  --purple-dark: #6B3A8C;
  --sky-blue: #10C1FF;
  --sky-blue-dark: #0099D9;
  --court-blue: #0A2342;
  --court-blue-deep: #061528;
  --bg-light: #FAFBFC;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A5568;
  --text-light: #8896A6;
  --border: #E8ECF0;
  --success: #00D26A;
  --clay: #E86135;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--court-blue-deep);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== NAV ===== */
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: all 0.3s ease;
  background: rgba(6, 21, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(223, 255, 0, 0.08);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: white;
  text-decoration: none;
}

.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a:hover { color: white; }

.nav-cta {
  padding: 10px 24px;
  background: var(--yellow) !important;
  color: var(--court-blue-deep) !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(223, 255, 0, 0.3);
}

/* ===== PAGE HEADER ===== */
.legal-hero {
  background: var(--court-blue-deep);
  padding: 140px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(155, 89, 182, 0.08), transparent),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(16, 193, 255, 0.06), transparent);
  pointer-events: none;
}

.legal-hero-inner {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(223, 255, 0, 0.1);
  border: 1px solid rgba(223, 255, 0, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 2px;
  color: white;
  line-height: 1;
  margin-bottom: 16px;
}

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

/* ===== CONTENT ===== */
.legal-body-wrap {
  background: white;
}

.legal-body {
  width: 75%;
  margin: 0 auto;
  padding: 64px 0 100px;
}

.legal-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.legal-h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.legal-h3 ~ .legal-p,
.legal-h3 ~ .legal-ul {
  padding-left: 28px;
}

.legal-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.legal-ul {
  list-style: none;
  margin: 10px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-ul li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}

.legal-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--yellow-dark);
  border-radius: 50%;
}

.legal-contact-block {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 12px;
}

.legal-contact-block p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
}

.legal-contact-block a,
.legal-p a {
  color: var(--sky-blue);
  text-decoration: none;
}

.legal-contact-block a:hover,
.legal-p a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--court-blue-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 60px;
}

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

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
}

.footer-logo span { color: rgba(223, 255, 0, 0.4); }

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

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-links a.active { color: rgba(255,255,255,0.6); }

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(223, 255, 0, 0.1);
  border-color: rgba(223, 255, 0, 0.3);
  color: var(--yellow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-nav { padding: 16px 30px; }
  .nav-links { gap: 20px; }
  .legal-hero { padding: 120px 0 48px; }
  .legal-body { width: 90%; padding: 48px 0 80px; }
  .legal-title { font-size: 52px; }
}

@media (max-width: 640px) {
  .hero-nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .legal-hero { padding: 100px 0 40px; }
  .legal-body { width: 92%; padding: 40px 0 64px; }
  .legal-title { font-size: 40px; }
  .legal-h2 { font-size: 22px; }
  .footer { padding: 30px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
