* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #000000;
  color: #ffffff;
}

.site-header {
  border: none;
  padding: 16px 24px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.center-content {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.policy-button {
  text-decoration: none;
  width: 220px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  text-align: center;
}

.policy-button:hover {
  opacity: 0.9;
}

.privacy-content {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.legal-content {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content h1 {
  margin: 0;
}

.legal-text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
  font-family: inherit;
}

.back-link {
  color: #ffffff;
  font-weight: 600;
}
