:root{
  --bg:#000000;
  --panel:#0f1720;
  --muted:#9aa4ad;
  --accent:#7c5cff;
  --glass: rgba(255,255,255,0.03);
}
*{box-sizing:border-box}
/* remove boxed panel: just center content on plain background */
.center{
  text-align:center;
  padding:28px 20px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  max-width:720px;
}

html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
}
.center{
  text-align:center;
  padding:28px 20px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  max-width:720px;
}
.logo{
  font-size:40px;
  letter-spacing:1px;
  margin:0 0 8px 0;
  color:var(--accent);
}
.logo-img{
  width:96px;
  height:auto;
  display:block;
  margin:0 auto 8px auto;
  filter:none;
}
.headline{
  margin:0 0 10px 0;
  font-weight:600;
  color:#fff;
  font-size:22px;
}
.sub{color:var(--muted);margin:0 0 18px 0}
.cta{
  display:inline-block;
  padding:12px 20px;
  border-radius:10px;
  background:linear-gradient(180deg,var(--accent), #5b3fff);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  box-shadow: 0 6px 18px rgba(124,92,255,0.18);
}
.cta:hover{transform:translateY(-2px);filter:brightness(1.02)}
.small{margin:0;color:var(--muted);font-size:13px}

.footer-row{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:18px;flex-wrap:wrap}
.dev{display:flex;align-items:center;gap:8px}
.dev-logo{height:28px;width:auto;opacity:0.95}
.dev-text{color:var(--muted);font-size:13px}

@media (max-width:520px){
  .center{padding:28px}
  .logo{font-size:36px}
  .headline{font-size:20px}
}
