@charset "UTF-8";
.galaxy-slider {
  position: relative;
  height: 600px;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
  border-radius: 12px;
  font-family: sans-serif;
}

.orbit-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
	flex-direction: row-reverse;
}

.orbit-slide {
  min-width: 100%;
  height: 600px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.nebulous-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.stellar-caption {
  position: absolute;
  left: 50px;
  bottom: 120px;
  color: white;
  z-index: 2;
  max-width: 40%;
}

.stellar-caption h1 {
  margin: 0;
  font-size: 24px;
}

.stellar-caption p {
  margin: 28px 0;
  font-size: 16px;
}

.stellar-caption button {
  padding: 8px 16px;
  background-color: #ff7b00;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.vector-controls {
  position: absolute;
  bottom: 30px;
  left: 50px;
	right: auto;
  display: flex;
  gap: 10px;
  z-index: 5;
	direction: rtl;
}

.arrow-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  color: black;
  transform: scale(1.1);
}

.comet-dots {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.comet-dots span {
  width: 10px;
  height: 10px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.comet-dots .active {
  background-color: white;
}

@media screen and (max-width: 768px) {
  .stellar-caption {
    position: static;
    padding: 20px;
    background-color: rgba(0,0,0,0.5);
    max-width: 100%;
    text-align: center;
  }

  .orbit-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .nebulous-overlay {
    position: absolute;
    height: 60%;
  }
}

