body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: var(--page-bg);
  color: var(--text-body);
}

.container {
  max-width: 680px;
  margin: 40px auto;
  padding: 24px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

@media (max-width: 639px) {
  .container {
    margin-bottom: calc(56px + env(safe-area-inset-bottom) + 16px);
  }
}

h1 {
  text-align: center;
  margin-bottom: 4px;
  color: var(--text-main);
}

.effective-date {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted, #6b7280);
  margin-bottom: 24px;
}

.content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.content h2 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.content ul {
  margin: 6px 0 6px 20px;
  padding: 0;
}

.back {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media (max-width: 639px) {
  .back #auth-slot {
    display: none !important;
  }
}
