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

:root {
  --sans: 'DM Sans', sans-serif;
  --bg: #12121f;
  --bg-secondary: #1a1a2e;
  --text-primary: #f0ede8;
  --text-secondary: #8a8898;
  --text-tertiary: #4a4a60;
  --border-light: rgba(255,255,255,0.07);
  --border-mid: rgba(255,255,255,0.13);
  --border-strong: rgba(255,255,255,0.22);
  --accent: #5b9fd6;
  --radius-md: 8px;
}

html, body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100%;
  line-height: 1.7;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.back {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  font-family: var(--sans);
  display: inline-block;
  transition: color 0.15s;
  margin-bottom: 0.5rem;
}
.back:hover { color: var(--text-secondary); }

h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }