/* styles.css - Rusted Apocalypse theme */
:root{
  --bg-overlay: rgba(10,8,6,0.78);
  --accent: #b85a2f; /* rust */
  --accent-dark: #7a3a21;
  --muted: #c9b99a;
  --panel: rgba(20,18,16,0.9);
}
*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color:var(--muted);
  background-color:#0b0b0b;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.overlay{
  background:var(--bg-overlay);
  min-height:100vh;
  padding:40px;
  display:flex;
  flex-direction:column;
  gap:30px;
  align-items:center;
  text-align:center;
}
.hero h1{
  font-size:2.6rem;
  color:var(--accent);
  letter-spacing:1px;
  text-shadow:0 0 18px rgba(184,90,47,0.12);
  margin:0;
}
.hero .tag{color:#bfb1a0; margin-top:8px;}
.about, .info, .donate, .gallery-section{width:100%; max-width:1100px; background:var(--panel); padding:20px; border-radius:8px; border:1px solid rgba(120,80,60,0.08); box-shadow:0 6px 24px rgba(0,0,0,0.6);}
.server-info{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; align-items:flex-start;}
.server-info li{font-size:1rem;}
.cases{display:flex; flex-wrap:wrap; gap:18px; justify-content:center;}
.case{width:220px; padding:16px; border-radius:8px; background:linear-gradient(180deg, rgba(30,26,20,0.9), rgba(18,14,10,0.85)); border:1px solid rgba(120,80,60,0.18); box-shadow:0 6px 18px rgba(0,0,0,0.6); display:flex; flex-direction:column; align-items:center; gap:8px;}
.case img{width:78px; height:78px; transition:transform .28s, box-shadow .28s; filter:drop-shadow(0 6px 18px rgba(0,0,0,0.6));}
.case img:hover{transform:scale(1.12); box-shadow:0 0 20px rgba(184,90,47,0.25);}
.case h3{color:var(--accent); margin:6px 0 0 0;}
.case .price{font-weight:700; color:#f5e9da;}
.paypal-button{display:inline-block; background:var(--accent-dark); color:#fff; padding:8px 14px; border-radius:6px; text-decoration:none; margin-top:6px; box-shadow:inset 0 -3px 0 rgba(0,0,0,0.25);}
.gallery{display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:14px;}
.gallery img{width:100%; height:120px; object-fit:cover; border-radius:6px; transition:transform .25s, box-shadow .25s; border:1px solid rgba(0,0,0,0.45);}
.gallery img:hover{transform:scale(1.05); box-shadow:0 10px 30px rgba(0,0,0,0.6);}
footer{color:#a79a87; font-size:0.9rem;}
a{color:var(--accent);}
@media (max-width:600px){
  .hero h1{font-size:1.6rem}
  .case{width:47%}
}
