#globe-container {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #010d24;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

#stars-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#globe {
  flex: 1;
  max-width: 50%;
  height: 100%;
  z-index: 1;
}

#globe canvas {
  width: 100% !important;
  height: 100% !important;
}

.hero-content {
  flex: 1;
  max-width: 50%;
  z-index: 1;
  color: white;
  text-align: left;
  padding-left: 2rem;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  #globe-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  #globe {
    flex: 0 1 55%;
    max-width: 100%;
    max-height: 55vh;
    width: 100%;
  }

  .hero-content {
    flex: 0 1 auto;
    max-width: 100%;
    text-align: center;
    padding-left: 0;
    margin-top: 0;
  }
}

