:root {
  --bg: #0b0f17;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.09);
  --text: #e9eefc;
  --muted: rgba(233, 238, 252, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #7c5cff;
  --accent2: #28d7a5;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Helvetica Neue",
    sans-serif;
  background:
    radial-gradient(900px 500px at 18% 10%, rgba(124, 92, 255, 0.22), transparent 55%),
    radial-gradient(700px 420px at 88% 18%, rgba(40, 215, 165, 0.14), transparent 58%),
    radial-gradient(700px 700px at 52% 92%, rgba(124, 92, 255, 0.1), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--muted);
}

