:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #050506;
  --text-main: #f8fafc;
  --text-muted: #9aa5c2;
  --accent: #9fb7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(88, 121, 255, 0.25), transparent 60%), var(--bg);
  color: var(--text-main);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
}

main {
  width: min(900px, 100%);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-main);
}

.logo-link {
  display: inline-flex;
}

.policy-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

p,
li {
  color: var(--text-muted);
  line-height: 1.6;
}

a {
  color: var(--accent);
}

li strong,
.tos-highlight {
  color: var(--text-main);
}

.last-updated {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

ul {
  padding-left: 1.2rem;
}
