*, *::before, *::after { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: auto;
}
body {
  background: radial-gradient(circle at 20% 20%, rgba(140,60,200,0.08), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(200,60,255,0.05), transparent 40%),
              #000;
  color: #fff;
  overflow-y:auto;
}
.muted { color:#9b9b9b; font-size:13px; }
.note { font-size:13px; color:#cfcfcf; margin-top:6px; }
.row { display:flex; gap:10px; align-items:center; }


