*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Martian Mono', monospace;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.logo-mark {
  align-self: center;
  margin-top: 48px;
  width: 36px;
  height: auto;
  opacity: 0.9;
  user-select: none;
}

.back {
  align-self: flex-start;
  margin-top: 32px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.back:hover { color: #000; }

.title {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.updated {
  margin-top: 8px;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
}

.content {
  margin-top: 36px;
  padding-bottom: 60px;
}

.content h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 14px;
}

.content h2:first-child { margin-top: 0; }

.content p {
  font-size: 12px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 14px;
}

.content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.content li {
  font-size: 12px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 4px;
}

.content a {
  color: #FF1493;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 20, 147, 0.25);
  transition: border-color 0.2s;
}

.content a:hover { border-bottom-color: #FF1493; }

.content strong {
  color: #000;
  font-weight: 700;
}

.legal-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 32px 0 60px;
  border-top: 1px solid #eee;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-footer a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-footer a:hover { color: #000; }

.legal-footer span { color: #ddd; }

@media (max-width: 480px) {
  .page { padding: 0 20px; }
  .logo-mark { margin-top: 32px; }
  .content p, .content li { font-size: 11px; }
}
