body {
  margin:0;
  font-family:Inter, sans-serif;
  color:white;

  background: linear-gradient(-45deg,#020617,#0f172a,#0ea5e9,#1e293b);
  background-size:400% 400%;
  animation:bg 14s ease infinite;
}

@keyframes bg {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px 40px;

  background:rgba(10,15,30,0.35);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.title {
  background: linear-gradient(90deg,#38bdf8,#22d3ee);
  -webkit-background-clip:text;
  color:transparent;
  text-shadow:0 0 15px rgba(56,189,248,0.6);
}

.back {
  text-decoration:none;
  color:white;
  padding:8px 16px;
  border-radius:10px;
  border:1px solid rgba(56,189,248,0.6);
}

/* POLICY */
.policy {
  max-width:900px;
  margin:80px auto;
  padding:20px;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);

  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
}

.policy h2 {
  font-size:28px;
  margin-bottom:20px;
}

.policy h3 {
  margin-top:25px;
  color:#38bdf8;
}

.policy p {
  line-height:1.7;
  opacity:0.9;
}

.policy ul {
  margin-left:20px;
  opacity:0.85;
}

.intro {
  font-size:16px;
  opacity:0.8;
}

/* FOOTER */
.footer {
  margin-top:60px;
  padding:20px 40px;

  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
}

.footer-inner {
  display:flex;
  justify-content:center;
  font-size:14px;
  opacity:0.7;
}