/* docs/css/space.css */

/* 1) Full‐bleed starfield behind content */
.md-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 10, 0.85); /* translucent deep-space */
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 2rem rgba(0,0,0,0.6);
}

/* 2) Page wrapper gets the particles canvas */
.md-main {
  position: relative;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

/* 3) Cosmic typography accents */
.md-typeset h1, .md-typeset h2, .md-typeset h3 {
  font-family: "Orbitron", sans-serif;
  color: #e0e0ff;
  text-shadow: 0 0 0.5rem rgba(224,224,255,0.8);
}

/* 4) Link hover glows */
.md-typeset a {
  color: #90caf9;
  transition: all 0.3s ease;
}
.md-typeset a:hover {
  color: #bbdefb;
  text-shadow: 0 0 0.5rem #bbdefb;
}