/* Modern maintenance page styles */
:root{
  --bg1:#0f1724;
  --bg2:#0b2a3a;
  --card: rgba(255,255,255,0.06);
  --glass: rgba(255,255,255,0.04);
  --accent: #6ee7b7;
  --muted: #cbd5e1;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(135deg,var(--bg1),var(--bg2));
  color:var(--muted);
  -webkit-font-smoothing:antialiased;
}
.center{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  padding:2rem;
}
.card{
  width:100%;
  max-width:680px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius:14px;
  padding:2.4rem;
  box-shadow:0 10px 30px rgba(2,6,23,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.04);
  text-align:center;
}
.logo{
  font-weight:700;
  color:var(--accent);
  font-size:1.25rem;
  letter-spacing:0.06em;
  margin-bottom:0.6rem;
}
h1{margin:0 0 0.4rem 0;font-size:1.9rem;color:#fff}
.lead{margin:0 0 1rem 0;color:var(--muted);font-size:1.02rem}
.impressum p{margin:0.6rem 0;color:var(--muted);text-align:left}
.small{margin-top:1rem;color:#94a3b8;font-size:0.9rem}
.actions{margin-top:1.25rem}
.btn{
  display:inline-block;
  padding:0.6rem 1.05rem;
  border-radius:10px;
  background:linear-gradient(90deg,var(--accent),#34d399);
  color:#042024;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 6px 18px rgba(16,185,129,0.12);
}
.btn:hover{transform:translateY(-2px);transition:transform .18s ease}
.attribution{margin-top:1rem;opacity:0.7;color:var(--muted);font-size:0.9rem}
@media (max-width:480px){
  .card{padding:1.6rem;border-radius:12px}
  h1{font-size:1.5rem}
}

/* Footer and utility styles */
body{padding-bottom:72px}
.subtitle{color:#9fbfcf;font-weight:600;margin-bottom:0.35rem}
.actions{display:flex;gap:0.75rem;justify-content:center}
.btn.discord{background:linear-gradient(90deg,#5865f2,#7289da);color:white;box-shadow:0 8px 20px rgba(100,116,255,0.14)}

.site-footer{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  display:flex;
  justify-content:center;
  background:linear-gradient(180deg, rgba(7,10,15,0.12), rgba(7,10,15,0.06));
  backdrop-filter: blur(6px);
  border-top:1px solid rgba(255,255,255,0.03);
  padding:0.6rem 1rem;
}
.footer-inner{max-width:1100px;width:100%;display:flex;gap:0.6rem;align-items:center;justify-content:center;color:var(--muted);font-size:0.95rem}
.footer-link{color:var(--muted);text-decoration:none;padding:2px 6px;border-radius:6px}
.footer-link:hover{background:rgba(255,255,255,0.02)}
.footer-sep{color:rgba(255,255,255,0.18);margin:0 6px}

