/* style.css - dark theme */
:root{
  --bg:#0f1113;
  --card:#121416;
  --muted:#9aa3ad;
  --accent:#ff6b6b;
  --glass: rgba(255,255,255,0.04);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:#e6eef6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{
  max-width:980px;
  margin:40px auto;
  padding:24px;
}
.hero{
  text-align:center;
  padding:36px 20px;
}
.logo{
  font-weight:800;
  letter-spacing:2px;
  font-size:34px;
  margin-bottom:8px;
  background: linear-gradient(90deg,#ff6b6b,#9b5ef2,#3ddc97);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.tag{
  color:var(--muted);
  font-size:16px;
  margin-bottom:18px;
}
.search-wrap{
  display:flex;
  justify-content:center;
  margin:18px 0 0;
}
.search-box{
  width:100%;
  max-width:680px;
  display:flex;
  gap:8px;
  background:var(--card);
  padding:12px;
  border-radius:999px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
}
.search-box input{
  border:0;
  outline:0;
  background:transparent;
  color:inherit;
  font-size:16px;
  padding:6px 8px;
  flex:1;
}
.search-box button{
  border:0;
  background:transparent;
  cursor:pointer;
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
}
.hint{
  color:#ff7b7b; /* red-ish for "not found" */
  margin-top:10px;
  font-size:14px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:16px;
  margin-top:28px;
}
.card{
  background:var(--glass);
  padding:18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
}
.card h3{margin:0 0 8px}
.footer{color:var(--muted);text-align:center;margin-top:28px;font-size:13px}
@media (max-width:600px){
  .logo{font-size:26px}
  .search-box{padding:10px}
}
