:root {
  --pink: #FF3F9A;
  --yellow: #FFE000;
  --green: #7EE800;
  --dark: #111111;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.65);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
.bg-blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.18; }
.blob-1 { width: 520px; height: 520px; background: var(--pink);   top: -120px; left: -120px; }
.blob-2 { width: 440px; height: 440px; background: var(--yellow); top: 30%; right: -120px; }
.blob-3 { width: 380px; height: 380px; background: var(--green);  bottom: -100px; left: 30%; }

.legal-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo-img { display: block; width: clamp(180px, 24vw, 260px); height: auto; }
.nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  font-weight: 800; font-size: 14px;
  letter-spacing: .4px;
  transition: background .2s, border-color .2s, transform .2s;
}
.nav-back:hover { background: rgba(255,63,154,0.15); border-color: var(--pink); transform: translateY(-1px); }

.legal-wrap {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
  padding: 64px 28px 96px;
}
.legal-label {
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
}
.legal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.legal-updated {
  font-size: 13px; color: var(--muted); margin-bottom: 40px;
}
.legal-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 36px 0 12px;
  color: var(--yellow);
}
.legal-wrap p, .legal-wrap li { color: rgba(255,255,255,0.82); font-size: 16px; }
.legal-wrap p { margin-bottom: 14px; }
.legal-wrap ul { padding-left: 22px; margin-bottom: 14px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: var(--pink); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-wrap strong { color: #fff; }

@media (max-width: 640px) {
  .legal-nav { padding: 14px 18px; }
  .legal-wrap { padding: 36px 20px 64px; }
}
