:root {
  --bg-void: #08080f;
  --bg-deep: #0d0d1f;
  --bg-surface: #111127;
  --bg-card: rgba(255,255,255,0.035);
  --brand-1: #FF6B35;
  --brand-2: #E8165A;
  --brand-3: #AA0077;
  --brand-gradient: linear-gradient(135deg, #FF6B35, #E8165A, #AA0077);
  --text-primary: #ffffff;
  --text-secondary: #c8c8d8;
  --text-muted: #888899;
  --border: rgba(255,255,255,0.07);
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}
a { color: #ff6b9d; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(8,8,15,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--brand-gradient);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 16px rgba(232,22,90,0.4);
}

/* Content */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}
.legal-header {
  margin-bottom: 40px;
}
.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.legal-header .date {
  color: var(--text-muted);
  font-size: 14px;
}
.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 12px;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p, .legal-card li {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 10px;
}
.legal-card ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-card li {
  margin-bottom: 6px;
}

/* Footer */
footer {
  margin-top: 60px;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer a {
  color: var(--text-muted);
  margin: 0 12px;
  font-size: 13px;
}
footer .copy {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .legal-card { padding: 24px 20px; }
}
