/* Minimal site stylesheet for Chainswords */
:root{
  --bg: #0f0f12;
  --card:#121217;
  --muted:#9aa0a6;
  --accent:#d75f3f;
  --text:#e6e6e6;
}
html,body{height:100%;}
body{
  margin:0;
  font-family:Inter, Roboto, -apple-system, "Segoe UI", Arial, sans-serif;
  background:linear-gradient(180deg,#441515,var(--bg));
  color:var(--text);
  line-height:1.5;
}
header{padding:2rem 1rem; text-align:center}
main{max-width:900px;margin:0 auto;padding:1rem}
h1{margin:0 0 .25rem;font-size:2rem}
h2{color:var(--accent)}
ul{margin-left:1.25rem}
footer{padding:2rem 1rem;text-align:center;color:var(--muted);font-size:.9rem}
@media (max-width:600px){
  h1{font-size:1.5rem}
  main{padding:.75rem}
}
