
:root {
  --bg: #07010f;
  --fg: #f4f0ff;
  --card: #14081f;
  --primary: #e879f9;
  --primary-fg: #1a0524;
  --storm: #a855f7;
  --muted: #b8a4c9;
  --border: #3b1d55;
  --secondary: #1f102e;
  --success: #86efac;
  --danger: #f07171;
  --sky: #0d0518;
  --font: Outfit, ui-sans-serif, system-ui, sans-serif;
  --display: Anton, ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font); line-height: 1.5; min-height: 100%; }
a { color: inherit; }
img { max-width: 100%; }
button, [role="button"] { cursor: pointer; font: inherit; }
.wrap { width: min(1152px, calc(100% - 32px)); margin-inline: auto; }
.display { font-family: var(--display); letter-spacing: .04em; }
header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(16px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--fg); }
.brand img { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; }
.brand b { font-family: var(--display); font-weight: 400; letter-spacing: .12em; font-size: 20px; display: block; line-height: 1; }
.brand small { display: block; color: var(--primary); letter-spacing: .32em; font-size: 10px; font-weight: 700; }
.links { display: none; gap: 4px; }
.links a {
  text-decoration: none; color: var(--muted); padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.links a:hover, .links a.active { background: var(--secondary); color: var(--fg); }
.menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 0; border-radius: 8px; background: transparent; color: var(--fg); }
.drawer { display: none; flex-direction: column; gap: 4px; padding: 0 16px 16px; }
.drawer.open { display: flex; }
.drawer a { text-decoration: none; color: var(--muted); padding: 12px 16px; border-radius: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.drawer a.active, .drawer a:hover { background: var(--secondary); color: var(--fg); }
@media (min-width: 860px) {
  .links { display: flex; }
  .menu-btn { display: none; }
  .drawer { display: none !important; }
}
.badge {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 8px; padding: 4px 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border: 1px solid var(--border);
  background: var(--secondary); color: var(--muted);
}
.badge.ok { border-color: color-mix(in oklab, var(--success) 30%, transparent); background: color-mix(in oklab, var(--success) 15%, transparent); color: var(--success); }
.badge.off { border-color: color-mix(in oklab, var(--danger) 30%, transparent); background: color-mix(in oklab, var(--danger) 15%, transparent); color: var(--danger); }
.dot { width: 6px; height: 6px; border-radius: 99px; background: currentColor; }
.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  min-height: 420px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--bg) 35%, transparent), var(--bg)),
    url("../banner.png") center/cover;
}
.hero-inner { position: relative; padding: 72px 0; text-align: center; }
.hero img.logo { width: 160px; height: 160px; border-radius: 999px; object-fit: cover; filter: drop-shadow(0 0 28px color-mix(in oklab, var(--primary) 55%, transparent)); }
@media (min-width: 800px) { .hero img.logo { width: 224px; height: 224px; } }
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero .hero-bg { opacity: .5; }
.page-hero-inner { position: relative; padding: 56px 0; }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--primary); }
h1 { font-family: var(--display); font-size: clamp(40px, 7vw, 72px); margin: 12px 0 0; font-weight: 400; letter-spacing: .04em; }
h2 { font-family: var(--display); font-weight: 400; letter-spacing: .04em; margin: 0; }
p.lead { color: var(--muted); max-width: 640px; margin: 16px auto 0; font-size: 18px; }
.page-hero p.lead { margin-left: 0; }
.ipbox {
  width: min(576px, 100%); margin: 32px auto 0; text-align: left;
  border: 1px solid color-mix(in oklab, var(--primary) 40%, transparent);
  background: color-mix(in oklab, var(--card) 85%, transparent);
  border-radius: 16px; padding: 20px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.ipbox:hover { border-color: var(--primary); }
.ipbox small { display: block; color: var(--muted); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.ipbox .ip { font-family: var(--mono); color: var(--primary); font-size: clamp(20px, 4vw, 30px); font-weight: 600; margin-top: 4px; }
.ipbox .meta { color: var(--muted); font-size: 12px; margin-top: 8px; }
.iconbtn { width: 48px; height: 48px; border: 0; border-radius: 12px; background: color-mix(in oklab, var(--primary) 15%, transparent); color: var(--primary); flex-shrink: 0; }
.btns { display: flex; flex-direction: column; gap: 12px; width: min(576px, 100%); margin: 32px auto 0; }
@media (min-width: 640px) { .btns { flex-direction: row; justify-content: center; } }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 32px; border-radius: 8px; text-decoration: none; font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: #f0abfc; }
.btn-ghost { border-color: var(--border); color: var(--fg); }
.btn-ghost:hover { background: var(--secondary); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 40px 16px; text-align: center; }
.stat b { font-family: var(--display); font-size: 40px; color: var(--primary); font-weight: 400; }
.stat span { display: block; margin-top: 8px; color: var(--muted); letter-spacing: .16em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.section { padding: 80px 0; }
.section.sky { background: var(--sky); border-block: 1px solid var(--border); }
.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .g2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .g3 { grid-template-columns: 1fr 1fr 1fr; } }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }
footer { margin-top: auto; border-top: 1px solid var(--border); background: var(--sky); }
.foot { display: grid; gap: 40px; padding: 56px 0; }
@media (min-width: 800px) { .foot { grid-template-columns: 1.2fr .8fr .8fr; } }
.foot a { color: var(--fg); text-decoration: none; }
.foot a:hover { color: var(--primary); }
.legal { border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
.list { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.list li { display: flex; gap: 8px; }
.list i { width: 6px; height: 6px; border-radius: 99px; background: var(--primary); margin-top: 8px; flex-shrink: 0; }
.player { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); background: var(--card); border-radius: 12px; padding: 8px 12px; }
.row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
body { display: flex; flex-direction: column; min-height: 100dvh; }
main { flex: 1; }
