﻿* { box-sizing: border-box; }

:root {
  --bg: #050b18;
  --card: #0f172a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1e293b;
  --accent: #60a5fa;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  padding: 32px;
  line-height: 1.6;
}

.wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.global-language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.global-language-switcher a,
.global-language-switcher strong {
  color: var(--text);
  text-decoration: none;
}

.global-language-switcher a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.global-language-switcher strong {
  color: var(--accent);
}

.global-language-switcher .lang-sep {
  opacity: 0.55;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

h1, h2 {
  margin-top: 0;
  color: var(--text);
}

h2 {
  margin-top: 28px;
  font-size: 22px;
}

p, li {
  color: var(--muted);
  font-size: 16px;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #dbeafe;
}

ul {
  padding-left: 20px;
}


