:root{
  --bg:#0f1430;
  --panel:#ffffff;
  --ink:#141a2a;
  --muted:#6b7280;
  --accent:#b7f2c6;      /* светло-зелёные тона */
  --accent-weak:#e9f9ef; /* мягкая подложка */
  --radius:18px;
  --shadow:0 10px 40px rgba(0,0,0,.15);
  --gap:20px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  color:var(--ink);
  background:var(--bg);
}
.bg{position:fixed;inset:0; background:
 radial-gradient(1200px 600px at 50% -200px, rgba(183,242,198,.15), transparent 60%); z-index:-1;}

.container{max-width:1200px;margin:64px auto;padding:0 16px;}

.panel{
  background:var(--panel);
  border-radius:calc(var(--radius) + 6px);
  box-shadow:var(--shadow);
  padding:40px 28px;
}

.hero{display:flex;flex-direction:column;align-items:center;gap:24px;min-height:360px}
.title{font-size:64px;letter-spacing:2px;margin:0;color:#1b1f3b}
.hint{color:var(--muted);margin-top:8px}

.search{width:100%;max-width:560px}
.search.small{max-width:520px}
.search-box{
  background:var(--accent-weak);
  border-radius:999px;
  padding:10px 18px;
  display:flex;align-items:center;gap:12px;
  border:1px solid rgba(0,0,0,.06);
}
.search-box input{
  border:0;outline:0;background:transparent;
  width:100%;font-size:18px;color:#1a2235;
}
.icon{width:20px;height:20px;fill:#465;opacity:.7}

.results-header{
  display:flex;justify-content:space-between;align-items:center;
  background:linear-gradient(180deg, rgba(183,242,198,.22), transparent 70%);
  padding:18px 8px 8px;border-radius:var(--radius);
  color:#fff;margin-bottom:16px;
}
.brand{font-weight:800;letter-spacing:1.5px;color:#ecfff1;font-size:28px}

.grid{display:grid;grid-template-columns:1fr 1.4fr 1fr;gap:var(--gap)}
.col .card + .card{margin-top:var(--gap)}
.card{background:var(--panel);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px}
.card h3{margin:4px 0 12px;font-size:20px}
.card h2.center{text-align:center;margin:8px 0 16px}
.list{list-style:none;margin:0;padding:0}
.list li{padding:8px 4px;border-radius:12px}
.list li:hover{background:var(--accent-weak)}

.news{margin:6px 0 0 18px;padding:0}
.news-title{font-weight:700}
.news-desc{color:var(--muted);font-size:14px}

.loader{
  position:fixed;inset:0;background:rgba(15,20,48,.35);
  display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(2px);
}
.hidden{display:none}
.spinner{
  width:50px;height:50px;border-radius:999px;border:5px solid #cfeeDB;border-top-color:#2ecc71;
  animation:spin 1s linear infinite;background:white;box-shadow:0 0 0 6px var(--accent-weak);margin-right:16px;
}
.loader-text{color:#ecfff1;font-weight:600}
@keyframes spin{to{transform:rotate(360deg)}}

/* Адаптив */
@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
  .results-header{flex-direction:column;align-items:stretch;gap:10px}
}
