body{
  margin:0;
  font-family: Roboto, Arial, sans-serif;
  background:#111827;
  color:#e5e7eb;
}

.cover{
  max-width:1100px;
  margin:40px auto;
  padding:0 16px;
}

.topbar{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content: space-between;
  margin-bottom:18px;
}

h1{
  margin:0;
  font-size:28px;
}

.topbar p{
  margin:6px 0 0;
  color:#9ca3af;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}

.card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:14px;
  text-decoration:none;
  color:#e5e7eb;
  background:#1f2937;
  border:1px solid #374151;
  transition:0.12s;
}

.card:hover{
  background:#243244;
  border-color:#60a5fa;
}

.no{
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  background:#0b2a4a;
  border:1px solid #1d4ed8;
  color:#bfdbfe;
}

.title{
  font-weight:600;
}