:root{
  --bg: #353535;
  --card: #db875a;
  --accent: #4f46e5;
  --muted: #ffffff;
  --text: #e6eef8;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, Lucida, Console, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1;
  padding:2rem;

.box-img{
  display:block;
  max-width:100%;
  width:360px;
  height:auto;
  border-radius:6px;
  margin-bottom:0.75rem;
  object-fit:cover;
}
}
.container{
  max-width:750px;
  margin:0 auto;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.03);
  border-radius:5px;
  padding:1.5rem;
  box-shadow:0 6px 30px rgba(2,6,23,0.6);
}
header.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
}
.site-title{
  font-size:3.5rem;
  font-weight:600;
  letter-spacing:0.2px;
}
.nav{display:flex;gap:0.5rem}
a{color:var(--text);text-decoration:none}
a:hover{color:var(--accent)}
.card{
  background:var(--card);
  border-radius:10px;
  padding:1rem;
  border:1px solid rgba(255,255,255,0.02);
}
h1{font-size:1.6rem;margin-bottom:0.25rem}
h2{font-size:1rem;color:var(--muted);margin-top:0;margin-bottom:0.85rem}
p{color:var(--muted);margin:0 0 1rem 0}
ul{padding-left:1.25rem;margin:0 0 1rem 0}
li{margin:0.35rem 0}
.hero{padding:1.25rem;border-radius:12px;margin-bottom:1rem}
h1,h2{margin:0 0 0.5rem 0}
p{color:var(--muted);margin:0 0 1rem 0}
.box{
  background:#ff5b5b;
  color:#05202a;
  padding:4rem;
  margin-top:2.5rem;
  border-radius:7px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 6px 20px rgba(5,32,42,0.06);
}
.btn{
  background:linear-gradient(90deg,var(--accent),#7c3aed);
  color:white;
  border:none;
  padding:0.5rem 0.9rem;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}
.btn.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--text);
}

.site-header{padding:0 0 1rem 0}
@media (max-width:640px){
  body{padding:1rem}
  .site-title{font-size:1.1rem}
  .container{padding:1rem}
}
