:root{
  --bg:#07070a;
  --text:#f6f7ff;
  --muted:#aeb6cc;
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);

  --primary:#2af1c6;
  --primary2:#14c7a4;
  --accent:#7c5cff;
  --warn:#ffd25a;

  --radius:18px;
  --shadow:0 18px 50px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; margin:0; padding:0; }

body{
  font-family:"Roboto",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(42,241,198,.14), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(124,92,255,.12), transparent 60%),
    radial-gradient(800px 500px at 50% 100%, rgba(255,210,90,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

.bg-orbs{ position:fixed; inset:0; pointer-events:none; z-index:0; }
.orb{
  position:absolute; border-radius:50%;
  filter:blur(40px); opacity:.55;
  animation:floaty 10s ease-in-out infinite;
}
.orb-1{ width:340px; height:340px; left:-120px; top:120px; background:rgba(42,241,198,.35); }
.orb-2{ width:320px; height:320px; right:-120px; top:40px; background:rgba(124,92,255,.30); animation-delay:-3s; }
.orb-3{ width:380px; height:380px; left:30%; bottom:-180px; background:rgba(255,210,90,.22); animation-delay:-6s; }
@keyframes floaty{
  0%,100%{ transform:translateY(0) translateX(0) scale(1); }
  50%{ transform:translateY(-18px) translateX(10px) scale(1.04); }
}

.wrap{
  position:relative;
  z-index:1;
  max-width:980px;
  margin:0 auto;
  padding:18px 14px 40px;
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.20));
  box-shadow:var(--shadow);
}

.brand{ display:flex; gap:12px; align-items:center; }
.logo{
  width:46px; height:46px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  color:#06110d;
  background:linear-gradient(90deg, var(--primary2), var(--primary), var(--primary2));
  border:1px solid rgba(42,241,198,.35);
}
.brand-name{ font-weight:900; letter-spacing:.8px; font-size:18px; }
.brand-sub{ margin-top:2px; font-size:12px; color:var(--muted); }

.cta{ display:flex; gap:10px; flex-wrap:wrap; }

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  border:1px solid transparent;
  transition:transform .18s ease, filter .18s ease, background .18s ease;
  overflow:hidden;
}
.btn-primary{
  color:#06110d;
  border-color:rgba(42,241,198,.45);
  background:linear-gradient(90deg, var(--primary2), var(--primary), var(--primary2));
}
.btn-ghost{
  color:var(--text);
  border-color:var(--stroke2);
  background:rgba(0,0,0,.18);
}
.btn:hover{ transform:translateY(-2px); filter:brightness(1.04); }

.shine{
  position:absolute; inset:-2px;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 15%, transparent 30%);
  transform:translateX(-120%);
  opacity:.7;
}
.btn-primary:hover .shine{ animation:shine 1.2s ease; }
@keyframes shine{ 0%{transform:translateX(-120%);} 100%{transform:translateX(120%);} }

.hero{ margin-top:12px; }
.hero-card{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.20));
  box-shadow:var(--shadow);
}
.hero-card h1{
  font-size:18px;
  font-weight:900;
  letter-spacing:.2px;
}
.hero-card p{
  margin-top:6px;
  font-size:13px;
  line-height:1.75;
  color:var(--muted);
}

.search-row{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.search{
  flex:1;
  min-width:240px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);
}
.search input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  color:var(--text);
  font-size:13px;
}
.ico{ opacity:.85; }
.count{
  font-size:12px;
  color:var(--muted);
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}

.tags{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.chip{
  border:1px solid var(--stroke2);
  background:rgba(0,0,0,.18);
  color:var(--text);
  padding:9px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.chip:hover{ transform:translateY(-1px); background:rgba(255,255,255,.06); }
.chip.is-active{
  border-color:rgba(42,241,198,.45);
  background:rgba(42,241,198,.12);
}

.grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
@media (min-width: 820px){
  .grid{ grid-template-columns:repeat(3, 1fr); }
}

.card{
  text-decoration:none;
  color:var(--text);
  padding:12px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.20));
  box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.card:hover{ transform:translateY(-3px); border-color:rgba(255,255,255,.18); }

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.badge{
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(42,241,198,.18);
  background:rgba(42,241,198,.08);
  color:rgba(255,255,255,.92);
}
.arrow{
  width:34px; height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:rgba(246,247,255,.90);
}

.card-title{
  font-weight:900;
  font-size:14px;
  letter-spacing:.2px;
}
.card-desc{
  font-size:12.5px;
  line-height:1.7;
  color:var(--muted);
  margin-top:-4px;
}

.foot{
  margin-top:12px;
  text-align:center;
  color:rgba(255,255,255,.60);
  font-size:11px;
}
.foot-links{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
.foot-links a{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.20);
  padding-bottom:2px;
}
.foot-links a:hover{ color:var(--text); }
