:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --muted2: rgba(255,255,255,0.45);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(37,99,235,0.35), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(20,184,166,0.22), transparent 60%),
    linear-gradient(180deg, #070b14, var(--bg));
  min-height:100vh;
}

.page{
  max-width: 1040px;
  margin: 0 auto;
  padding: 22px 16px 18px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 16px 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--border);
  font-size:20px;
}
.title{font-weight:800; letter-spacing:0.2px}
.subtitle{color:var(--muted); font-size:13px; margin-top:2px}
.hint{
  color: var(--muted);
  font-size: 13px;
  text-align:right;
  max-width: 320px;
}

.grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card{
  grid-column: span 6;
  display:flex;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  text-decoration:none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  position:relative;
  overflow:hidden;
}

.card:hover{
  transform: translateY(-2px);
  background: var(--panel2);
  border-color: rgba(255,255,255,0.18);
}

.card-icon{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--border);
  flex: 0 0 auto;
  font-size: 22px;
}

.card-body{flex:1; min-width:0}
.card-title{font-size:18px; font-weight:800; margin-bottom:6px}
.card-text{color:var(--muted); font-size:14px; line-height:1.4}

.card-meta{
  margin-top: 10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.pill{
  font-size:12px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
}

.card-go{
  align-self:flex-end;
  color: rgba(255,255,255,0.85);
  font-weight:700;
  font-size: 14px;
  padding-left: 10px;
  white-space:nowrap;
}

.card-muted{
  grid-column: span 12;
  opacity: 0.9;
}

.footer{
  margin-top: 14px;
  padding: 12px 6px;
  display:flex;
  justify-content:space-between;
  color: var(--muted2);
  font-size: 12px;
}

@media (max-width: 860px){
  .card{grid-column: span 12;}
  .hint{display:none;}
}
