/**
 * Pantheon Constellation — Styles
 * WebGL star field container with label overlay.
 */

.constellation-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  background: #030308;
  border: 1px solid rgba(51, 255, 51, 0.1);

  /* Subtle depth */
  box-shadow:
    0 0 40px rgba(51, 255, 51, 0.05),
    0 0 80px rgba(51, 255, 51, 0.02),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.constellation-canvas,
.constellation-labels {
  display: block;
  width: 100%;
}

.constellation-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Fullscreen mode (for /constellation/ view) */
.constellation-container.fullscreen {
  position: fixed;
  inset: 0;
  margin: 0;
  border-radius: 0;
  z-index: 50;
}

/* Responsive */
@media (max-width: 640px) {
  .constellation-container {
    margin: 1rem -0.5rem;
    border-radius: 4px;
  }
}

/* Print: hide */
@media print {
  .constellation-container {
    display: none !important;
  }
}
