/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  overflow: hidden;
  background: #000000; /* Pitch black space */
  position: relative;
  font-family: Arial, sans-serif;
}

/* Purple/violet faint base overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(111, 0, 255, 0.1), transparent 70%);
  z-index: 0;
}

#starfield {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  filter: drop-shadow(0 0 2px rgba(180, 180, 255, 0.6));
}

#shuttle-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
  transition: border-radius 0.3s;
  transform-style: preserve-3d;
}



