:root{
  --navy:#0b1530;
  --green:#35c76a;
  --white:#ffffff;
  --muted:rgba(255,255,255,.72);
  --border:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.06);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--navy);
  color:var(--white);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
  min-height:100vh;
}
a{color:inherit;text-decoration:none}
