:root{
  --bg: #05070b;
  --fg: #eaf1ff;
  --muted: rgba(234,241,255,.72);
  --line: rgba(255,255,255,.10);
  --glass: rgba(0,0,0,.42);
  --glass2: rgba(0,0,0,.58);
  --accent: #4dd2ff;
  --accent2: #4dff9a;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }
