html {
  color-scheme: dark;
  background: #050711;
}

body {
  margin: 0;
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  color: #f5f7fb;
  background: linear-gradient(180deg, #050711 0%, #0a0f1f 46%, #050711 100%);
}

main {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 32px 0 72px;
}

article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(10, 15, 31, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  padding: clamp(24px, 4vw, 42px);
}

h1,
h2,
h3,
p,
li {
  line-height: 1.65;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  margin-top: 34px;
  color: #00e0ff;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h3 {
  margin: 22px 0 8px;
}

p,
li {
  color: #d8e1f2;
}

a {
  color: #7cff6b;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.legal-brand {
  color: #f5f7fb;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 4px;
  background: rgba(5, 7, 17, 0.72);
}

.language-switcher button {
  min-width: 42px;
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  color: #d8e1f2;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: #050711;
  background: #7cff6b;
}

.kicker,
.meta {
  color: #9fb0d0;
}

.kicker {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  margin: 0;
  max-width: 72ch;
  color: #eaf2ff;
  font-size: 1.04rem;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 4px;
}

.quick-links a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px 12px;
  color: #f5f7fb;
  text-decoration: none;
}

.quick-links a:hover {
  border-color: rgba(124, 255, 107, 0.48);
  color: #7cff6b;
}

.notice {
  margin-top: 26px;
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  background: rgba(0, 224, 255, 0.07);
}

.meta {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  main {
    width: min(100% - 24px, 980px);
    padding: 22px 0 48px;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
