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: 20px;
  color: var(--text-main);
}

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

.content[dir="rtl"] {
  text-align: right;
}

.back {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Auth button sits alongside feedback-link pills — match their shape */
.back .btn-secondary {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: white;
  color: #374151;
  font-size: 1rem;
}

/* On mobile the bottom nav Profile tab handles auth — hide the duplicate */
@media (max-width: 639px) {
  .back #auth-slot {
    display: none !important;
  }
}

.about-privacy-link {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
}
