#spaceBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.planet {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.planet-video {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
  mix-blend-mode: screen; 
}

.planet:hover .planet-video {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
}

.planet-label {
  display: block;
  margin-top: 0.5em;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}
