:root{
  --bg:#0b0f14;
  --border:#223044;
  --text:#e8f0ff;
  --muted:#a9b7cc;
  --accent:#2f86ff;
  --accent2:#3aa0ff;
  --danger:#ff4d4d;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial;
  background: radial-gradient(1200px 600px at 20% 0%, #111c2a 0%, var(--bg) 50%) fixed;
  color:var(--text);
  padding:24px;
}

.wrap{
  max-width:780px;
  margin:0 auto;
}

.site-header{
  max-width:780px;
  margin:0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}

.brand img{
  height:36px;
  width:auto;
  border-radius:10px;
}

.nav{
  display:flex;
  gap:10px;
}

.nav a{
  text-decoration:none;
  color:rgba(232,240,255,.92);
  padding:8px 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,14,20,.35);
}

.nav a:hover{
  border-color: rgba(47,134,255,.45);
}
