* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: #05062d;
  color: #e7e8ff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body {
  min-height: 100svh;
  padding: 48px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page {
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(151, 65, 252, 0.25);
  border-radius: 16px;
  padding: 40px clamp(20px, 5vw, 48px);
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 60px -10px;
}

.brand {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #af40ff;
  text-decoration: none;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.updated {
  margin: 0 0 32px;
  font-size: 13px;
  color: rgba(231, 232, 255, 0.55);
}

h2 {
  margin: 32px 0 8px;
  font-size: 18px;
  color: #ffffff;
}

p,
li {
  font-size: 15px;
  color: rgba(231, 232, 255, 0.88);
}

ul {
  padding-left: 22px;
}

a {
  color: #00ddeb;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 221, 235, 0.4);
}

a:hover {
  border-bottom-color: #00ddeb;
}

.footer-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(151, 65, 252, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}
