:root {
  --bg: #070913;
  --bg-soft: #0f1424;
  --surface: rgba(16, 21, 37, 0.82);
  --surface-strong: rgba(22, 29, 50, 0.96);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f8fbff;
  --muted: #9aa6bd;
  --muted-strong: #c5ccda;
  --accent: #7c5cff;
  --accent-2: #00e5ff;
  --danger: #ff477e;
  --success: #3df2a8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 18% 12%, rgba(124, 92, 255, 0.28), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(0, 229, 255, 0.16), transparent 28%),
    radial-gradient(circle at 58% 88%, rgba(255, 71, 126, 0.18), transparent 32%),
    var(--bg);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
