.alpha-carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: white;
  z-index: 10;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
  max-width: 600px;
}

.slide-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.slide-description {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.slide-button {
  padding: 14px 28px;
  background: linear-gradient(45deg, #000000aa, #ffffff22);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.slide-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.swiper-pagination {
  bottom: 15px !important;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.swiper-pagination-bullet {
  width: 70px;
  height: 70px;
  background-size: cover;
  border-radius: 10px;
  opacity: 0.6;
  transition: opacity 0.4s, transform 0.4s, border 0.3s;
  transform: scale(0.9);
}

.swiper-pagination-bullet-active {
  border: 3px solid #FF9494;
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.7);
}

.swiper-button-prev,
.swiper-button-next {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: rgba(255,255,255,1);
  transform: scale(1.2);
}
