/* SEC-2026-07-02: cosmic background image for calculator pages.
   Overrides the nebula gradient effect in .hd-bgfx. Included ONLY on the four
   pages listed by the owner (human-design, astrologia, numerologia,
   matrix-destiny) — bazi keeps the default nebula until asked. */

/* !important — 4 из 5 страниц держат inline <style>.hd-bgfx AFTER my <link>
   (стиль вложен в <body>, не в <head>), значит без !important они выигрывают
   каскад. Проверено на реальном DOM: только /human-design/ имеет стиль в
   head — там !important не нужен, но добавляем для консистентности. */
.hd-bgfx {
  position: fixed !important;
  inset: 0 !important;
  z-index: -1 !important;
  overflow: hidden !important;
  background: #0b0e18 url('/assets/calc-bg.webp') center center / cover no-repeat fixed !important;
}

/* Kill the nebula gradient blur — the image already provides the mood. */
.hd-bgfx::before { content: none !important; display: none !important; }

/* Hide the js-generated stars — the image already has them. */
.hd-bgfx__stars,
.hd-bgfx__stars i { display: none !important; }

/* Vignette for readability: darker at the edges, transparent in the center. */
.hd-bgfx__vign {
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(0,0,0,0) 42%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.35) 92%) !important;
}

/* Mobile: fixed attachment stutters on iOS Safari — switch to scroll. */
@media (max-width: 768px) {
  .hd-bgfx {
    background-attachment: scroll !important;
  }
}

/* Light theme override: image stays but heavier overlay to keep text readable. */
:root[data-theme="atma-light"] .hd-bgfx__vign {
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(255,255,255,.15) 42%, rgba(255,255,255,.55) 100%),
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.45) 92%) !important;
}
