@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(236,72,153,.18), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(96,165,250,.12), transparent),
    #080e1d;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #cbd5e1;
  padding: 40px 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(15,23,42,.8);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(236,72,153,.06), 0 32px 80px rgba(0,0,0,.4);
}

.header {
  margin-bottom: 32px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  color: #ec4899;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
}

.back-link:hover {
  text-decoration: underline;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  color: #f1f5f9;
  margin: 32px 0 16px;
}

p {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 16px;
}

ul {
  margin: 16px 0;
  padding-left: 1.5em;
  list-style: disc;
}

li {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 8px;
}

ol {
  margin: 16px 0;
  padding-left: 1.8em;
  list-style: decimal;
}

ol.legal-items {
  counter-reset: item;
  list-style: none;
  padding-left: 2.4em;
  margin: 8px 0 8px;
}

ol.legal-items > li {
  counter-increment: item;
  position: relative;
}

ol.legal-items > li::before {
  content: "(" counter(item) ")";
  position: absolute;
  left: -2.4em;
  width: 2.2em;
  text-align: right;
  color: #94a3b8;
}

dl {
  margin: 24px 0;
}

dt {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin: 32px 0 16px;
}

dd {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 16px;
  margin-left: 0;
}

dd ul,
dd ol {
  margin-top: 12px;
}

.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(148,163,184,.1);
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 640px) {
  .container {
    padding: 32px 24px;
  }
  h1 {
    font-size: 24px;
  }
}
