*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0a09;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 80px;
}
.card {
  width: 100%;
  max-width: 680px;
  background: #1f1d17;
  border-radius: 16px;
  padding: 36px 32px;
}
@media (min-width: 900px) {
  .card { max-width: 900px; }
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #7B5CD4;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
  text-decoration: none;
  display: block;
}
.updated {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}
h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}
h2 {
  font-size: 16px;
  font-weight: 600;
  color: #7B5CD4;
  margin-top: 32px;
  margin-bottom: 10px;
}
p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 10px;
}
a { color: #7B5CD4; text-decoration: none; }
a:hover { text-decoration: underline; }
.address-block {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 10px;
}
.placeholder {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.notice-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}
.notice-box a { color: #7B5CD4; }
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 40px 0 24px;
}
.footer {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
