:root{
  --primary-color:#2563eb;
  --text-main:#ffffff;
  --text-muted:rgba(255,255,255,0.68);
  --bg-card:rgba(255,255,255,0.06);
  --border:rgba(255,255,255,0.10);
}

*{box-sizing:border-box}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.7;
  color:rgba(255,255,255,0.92);
  margin:0;
  padding:20px;
  background: radial-gradient(60% 40% at 50% 0%, rgba(37,99,235,0.22) 0%, rgba(11,16,32,0.95) 55%, rgba(7,10,18,1) 100%);
}

.policy-container{
  max-width:900px;
  margin:40px auto;
  background:var(--bg-card);
  padding:56px;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

h1{
  font-size:2.1rem;
  font-weight:800;
  margin:0 0 .6rem 0;
  letter-spacing:-0.02em;
  color:rgba(255,255,255,0.96);
}

h2{
  font-size:1.35rem;
  font-weight:700;
  margin-top:2.2rem;
  margin-bottom:.9rem;
  color:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--border);
  padding-bottom:10px;
}

p{margin:0 0 1.1rem 0;color:rgba(255,255,255,0.88)}
ul{margin:0 0 1.1rem 0;padding-left:1.3rem}
li{margin-bottom:.5rem;color:rgba(255,255,255,0.88)}

a{
  color:#7aa7ff;
  text-decoration:none;
  transition:opacity .2s;
}
a:hover{opacity:.85;text-decoration:underline}

.header-meta{
  margin-bottom:28px;
  color:var(--text-muted);
  font-size:.95rem;
}

.toc{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px;
  margin:26px 0 34px 0;
}
.toc-title{
  font-weight:700;
  margin-bottom:10px;
  display:block;
  color:rgba(255,255,255,0.92);
}
.toc ul{list-style:none;padding:0;margin:0}
.toc li{margin-bottom:8px}
.toc a{color:rgba(255,255,255,0.80);font-size:.95rem}

.back-link{
  display:inline-block;
  margin-bottom:18px;
  font-weight:600;
  font-size:.95rem;
  color:rgba(255,255,255,0.85);
}
.back-link span{margin-right:6px}

.note{
  border-left:3px solid rgba(122,167,255,0.7);
  padding:10px 12px;
  background:rgba(255,255,255,0.04);
  border-radius:10px;
  margin:14px 0 18px;
  color:rgba(255,255,255,0.85);
}

hr{opacity:.2}

@media (max-width:640px){
  .policy-container{padding:28px 18px;margin:20px auto}
  h1{font-size:1.6rem}
}
