:root{
  --bg:#060610;
  --card:rgba(21,21,35,.5);
  --border:rgba(255,255,255,.04);
  --text:#e4e4ee;
  --sec:#7a7a94;
  --accent:#4488ff;
  --violet:#7c5cf0;
  --gold:#e8a50e;
  --teal:#0d9488;
  --rose:#e84a5f;
  /* 5 new brand colors */
  --cyan:#65c9fb;
  --mint:#30b188;
  --sky:#a8dbf8;
  --indigo:#4f46e5;
  --warm:#f59e0b;
  --radius:8px
}
body{
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  max-width:480px;
  margin:0 auto;
  padding:0 12px 40px;
  overflow-x:hidden;
  line-height:1.6;
  -webkit-font-smoothing:antialiased
}
img{
  max-width:100%;height:auto;display:block;
  border-radius:var(--radius);margin:8px 0
}
p{font-size:12px;color:#9999b0;margin:6px 0;line-height:1.65}
.muted{color:var(--sec);font-size:11px}
::selection{background:rgba(68,136,255,.15);color:#fff}