:root {
  color-scheme: light dark;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --text: #1b1f24;
  --muted: #5b6570;
  --accent: #0b6bcb;
  --border: #d8dee6;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101418;
    --surface: #1a2026;
    --text: #e8edf2;
    --muted: #9aa5b1;
    --accent: #6cb6ff;
    --border: #2c3640;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.status {
  color: var(--muted);
}

.content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.content h1 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
}

.content .school {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.content p {
  line-height: 1.65;
  white-space: pre-wrap;
}

.content a {
  color: var(--accent);
}

.contacts {
  display: grid;
  gap: 0.75rem;
}

.contacts a {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.empty {
  color: var(--muted);
}
