:root{
  --bg:#05060a;
  --panel:#0b0d14;
  --muted:#9aa4b2;
  --accent:#8ab4ff;
  --glass: rgba(255,255,255,0.03);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(138,180,255,0.04), transparent 10%),
    radial-gradient(1000px 500px at 90% 90%, rgba(200,200,255,0.02), transparent 10%),
    var(--bg);
  color: #e6eef8;
  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;
  padding:32px;
}

.container{
  width:100%;
  max-width:760px;
  text-align:center;
  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:14px;
  padding:56px 48px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.6);
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:center;
  margin-bottom:28px;
}

.brand .moon{
  font-size:48px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
}

.brand h1{
  margin:0;
  font-size:34px;
  letter-spacing:0.6px;
  font-weight:600;
}

.search{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}

.search input[type=search]{
  width:100%;
  max-width:640px;
  padding:16px 18px;
  background:var(--glass);
  border:1px solid rgba(255,255,255,0.04);
  color: #e8f0ff;
  border-radius:10px;
  outline:none;
  font-size:16px;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.4);
}

.search input::placeholder{ color: #9aa4b2; }

.actions{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
  margin-top:4px;
}

.btn{
  padding:10px 16px;
  border-radius:10px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  background:transparent;
  color:var(--muted);
}

.btn.primary{
  background: linear-gradient(90deg, rgba(138,180,255,0.14), rgba(138,180,255,0.08));
  color:var(--accent);
  border-color: rgba(138,180,255,0.12);
}

.btn.ghost{
  background:transparent;
  color:var(--muted);
  border-color: rgba(255,255,255,0.03);
}

.btn:active{ transform: translateY(1px); }

.note{
  margin-top:22px;
  color:var(--muted);
  font-size:13px;
}

/* small accessibility helper */
.sr-only{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }