@import url("variables.css");

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(var(--primary-rgb), 0.08), transparent 60%),
    radial-gradient(900px 500px at 88% 0%, rgba(var(--primary-2-rgb), 0.06), transparent 55%),
    var(--bg-0);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  opacity: .04;
  mix-blend-mode: overlay;
}

a{ color: inherit; text-decoration: none; }
pre{ margin:0; }

.console-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.console-sidebar__head h2 {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 24px 0 12px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
