:root{
  color-scheme: dark;

  --text: #F2FAFF;
  --muted: rgba(242,250,255,.78);
  --muted-2: rgba(242,250,255,.58);

  --cyan: #2FE6FF;
  --blue: #2B6BFF;
  --orange: #FF8A1F;

  --accent: var(--cyan);
  --accent-2: var(--orange);
  --accent-3: var(--blue);

  --surface: rgba(7, 20, 37, .58);
  --surface-2: rgba(7, 20, 37, .40);
  --border: rgba(46, 232, 255, .16);

  --shadow: 0 18px 44px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-sm: 12px;

  --glow-cyan: 0 0 26px rgba(47,230,255,.22);
  --glow-orange: 0 0 22px rgba(255,138,31,.16);
}

/* Global background = your image (same colors/effects) */
body{
  background:
    linear-gradient(90deg,
      rgba(5,11,24,.92) 0%,
      rgba(5,11,24,.78) 42%,
      rgba(5,11,24,.32) 74%,
      rgba(5,11,24,.10) 100%
    ),
    url("../img/bg-site.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text);
}

/* soft vignette for readability */
body::before{
  content:"";
  position: fixed; inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 560px at 18% 20%, rgba(0,0,0,.52), transparent 62%),
    radial-gradient(900px 560px at 18% 80%, rgba(0,0,0,.46), transparent 66%);
  opacity: .9;
}

/* no extra particles here — the image already has them */
body::after{ content:none; }
