:root{
  --bg:#050713;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(244,244,255,.96);
  --muted:rgba(195,204,255,.75);
  --accent: #a855f7;
}
*{box-sizing:border-box;}
html,body{min-height:100%; background: #0b0b2b00}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background: radial-gradient(1200px 800px at 80% 0%, rgba(37,99,235,.18), transparent 60%),
              radial-gradient(1100px 900px at 10% 15%, rgba(168,85,247,.14), transparent 65%),
              linear-gradient(145deg, #050713, #0b1024);
  color:var(--text);
  line-height:1.6;
}
html{
  background: radial-gradient(1200px 800px at 80% 0%, rgba(37,99,235,.18), transparent 60%),
              radial-gradient(1100px 900px at 10% 15%, rgba(168,85,247,.14), transparent 65%),
              linear-gradient(145deg, #050713, #0b1024);
}
a{color:#c084fc;}
a:hover{text-decoration:none; color:white;}
.legal-wrapper{
  max-width: 960px;
  margin: 0 auto;
  padding: 42px 22px 22px;
}
.legal-card{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.legal-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.legal-title{margin:0; font-size:28px;}
.legal-updated{font-size:13px; color:var(--muted);}
.legal-section{margin:18px 0 0;}
.legal-section h2{margin:0 0 8px; font-size:18px;}
.legal-section ul{padding-left:18px; margin:6px 0;}
.legal-note{margin-top:14px; font-size:13px; color:var(--muted);}
.page-footer{
  margin: 2px auto 16px;
  padding: 0 12px;
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  opacity: .75;
  grid-column: 1 / -1;
  max-height: max-content;
}
.page-footer a{color: rgba(255,255,255,.25);}
.page-footer a:hover{color: rgba(255,255,255,.35);}
.page-footer .legal-footer{color: rgba(255,255,255,.25);}