:root{
  --bg: #0b1020;
  --card: rgba(255,255,255,.07);
  --card2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --ring: rgba(255,255,255,.16);
  --shadow: 0 14px 40px rgba(0,0,0,.42);
  --max: 980px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 450px at 15% 0%, rgba(255,121,198,.18), transparent 60%),
    radial-gradient(900px 450px at 85% 0%, rgba(139,233,253,.18), transparent 60%),
    radial-gradient(900px 650px at 50% 90%, rgba(80,250,123,.12), transparent 60%),
    var(--bg);
}

.wrap{max-width: var(--max); margin: 0 auto; padding: 0 18px;}

.top{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.70);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero{padding: 18px 0; display:flex; gap:14px; align-items:center;}
.badge{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  font-weight: 900;
}

h1{margin:0; font-size: 20px; letter-spacing:.2px;}
.sub{margin:4px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.35;}

.hero-actions{margin-top:10px; display:flex; gap:10px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139,233,253,.35);
  background: rgba(139,233,253,.16);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  text-decoration:none;
}
.btn:hover{background: rgba(139,233,253,.22)}
.btn-ghost{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.btn-ghost:hover{background: rgba(255,255,255,.10)}

.section{padding: 22px 0 8px;}
.section-head h2{margin:0; font-size: 16px;}
.section-head p{margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.35;}

.grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 860px){
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 520px){
  .grid{grid-template-columns: 1fr;}
}

.card{
  text-decoration:none;
  color: var(--text);
  cursor:pointer;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07)}

.card-top{display:flex; gap: 12px; align-items:center;}
.icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 22px;
}

.title{font-weight: 900; font-size: 14.5px;}
.desc{margin-top: 2px; color: var(--muted); font-size: 12.5px; line-height: 1.25;}

.chips{margin-top: 12px; display:flex; gap:8px; flex-wrap:wrap;}
.chip{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
}

.go{margin-top: 12px; color: rgba(255,255,255,.82); font-weight: 900; font-size: 12.5px;}

.card-soon{
  text-align:left;
}

.list{margin-top: 14px; display:grid; gap:10px;}
.row{
  display:flex; justify-content: space-between; align-items:center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px 12px;
  text-decoration:none;
  color: var(--text);
}
.row:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16)}
.row-left{display:flex; gap:12px; align-items:center;}
.mini{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 18px;
}
.row-title{font-weight: 900; font-size: 13.5px;}
.row-desc{color: var(--muted); font-size: 12.5px; margin-top: 2px;}
.row-go{font-weight: 900; color: rgba(255,255,255,.80); font-size: 12.5px; white-space: nowrap;}

.note{
  margin-top: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  padding: 12px 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.footer{padding: 24px 0 30px;}
.tiny{color: rgba(255,255,255,.62); font-size: 12px;}
