:root {
  --bg: #0a0f1e;
  --card: #131a2e;
  --line: #232c47;
  --text: #e8edf8;
  --muted: #93a0bc;
  --accent: #3ec8ff;
  --accent2: #fbbf24;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 32px 20px 60px; }
header.site { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
header.site img { width: 52px; height: 52px; border-radius: 13px; }
header.site .name { font-size: 24px; font-weight: 800; }
header.site .name span { color: var(--accent); }
header.site a { text-decoration: none; color: inherit; display: flex; align-items: center; gap: 14px; }
h1 { font-size: 26px; margin: 0 0 6px; }
h2 { font-size: 18px; margin: 28px 0 8px; color: var(--accent); }
p, li { color: var(--text); font-size: 15.5px; }
.muted { color: var(--muted); font-size: 13.5px; }
a { color: var(--accent); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 24px; margin-bottom: 16px;
}
footer { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 16px; }
footer a { color: var(--muted); margin-right: 16px; font-size: 13.5px; text-decoration: none; }
footer a:hover { color: var(--accent); }
.hero { text-align: center; padding: 40px 0 20px; }
.hero img.big { width: 140px; height: 140px; border-radius: 32px; box-shadow: 0 12px 48px rgba(62, 200, 255, 0.25); }
.hero h1 { font-size: 34px; margin-top: 22px; }
.hero p { color: var(--muted); max-width: 480px; margin: 10px auto 0; }
.badge {
  display: inline-block; margin-top: 18px; padding: 8px 18px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line); color: var(--muted); font-size: 14px;
}
