:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07091a;
  color: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.28), transparent 32rem),
    linear-gradient(180deg, #07091a, #10132d 55%, #080914);
  min-height: 100vh;
}

main {
  margin: 0 auto;
  max-width: 860px;
  padding: 32px 20px 64px;
}

.brand {
  color: #a78bfa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.05;
  margin: 10px 0 14px;
}

h2 {
  color: #67e8f9;
  font-size: 1.15rem;
  margin-top: 30px;
}

p,
li {
  color: #cbd5e1;
  line-height: 1.7;
}

.updated {
  color: #94a3b8;
  font-size: 0.9rem;
}

.language {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

button,
.link {
  background: #171a35;
  border: 1px solid #3b3f68;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
  text-decoration: none;
}

button.active {
  background: #7c3aed;
  border-color: #a78bfa;
}

.card {
  background: rgba(23, 26, 53, 0.92);
  border: 1px solid #30345d;
  border-radius: 20px;
  padding: clamp(18px, 5vw, 34px);
}

.legal-section {
  display: none;
}

.legal-section.active {
  display: block;
}

footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 26px;
}
