/* Apollo Isle Futuristic Showcase Styles */

.apollo-isle-showcase {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a0a12 0%, #1a1a24 50%, #0f0f1a 100%);
  position: relative;
  overflow: hidden;
}

.apollo-isle-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(93, 63, 211, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123, 104, 238, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.apollo-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Futuristic Header */
.apollo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.apollo-title-section {
  position: relative;
}

.apollo-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #5D3FD3;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.apollo-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #5D3FD3 50%, #7B68EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(93, 63, 211, 0.3);
}

.apollo-subtitle {
  font-size: 1.3rem;
  color: #b8b8c8;
  margin: 1rem 0 2rem 0;
  font-weight: 300;
  letter-spacing: 1px;
}

.apollo-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tech-tag {
  background: linear-gradient(135deg, rgba(93, 63, 211, 0.2), rgba(123, 104, 238, 0.1));
  border: 1px solid rgba(93, 63, 211, 0.3);
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.tech-tag:hover::before {
  left: 100%;
}

.tech-tag:hover {
  border-color: rgba(93, 63, 211, 0.6);
  box-shadow: 0 5px 20px rgba(93, 63, 211, 0.3);
  transform: translateY(-2px);
}

/* Futuristic Gallery */
.apollo-gallery {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: start;
}

.gallery-main {
  position: relative;
}

/* Futuristic Carousel Container */
.carousel-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a24, #0a0a12);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(93, 63, 211, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.carousel-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(93, 63, 211, 0.4),
    0 0 50px rgba(93, 63, 211, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.carousel-container:hover .carousel-image {
  transform: scale(1.02);
}

/* Sleek Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(93, 63, 211, 0.8), rgba(123, 104, 238, 0.6));
  border: 1px solid rgba(93, 63, 211, 0.4);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.carousel-container:hover .carousel-nav {
  opacity: 1;
  visibility: visible;
}

.carousel-nav-prev {
  left: 20px;
}

.carousel-nav-next {
  right: 20px;
}

.carousel-nav:hover {
  background: linear-gradient(135deg, rgba(93, 63, 211, 1), rgba(123, 104, 238, 0.8));
  border-color: rgba(93, 63, 211, 0.8);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(93, 63, 211, 0.4);
}

.carousel-nav i {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.carousel-nav:hover i {
  transform: scale(1.1);
}

/* Futuristic Progress Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #5D3FD3, #7B68EE);
  transition: left 0.4s ease;
  border-radius: 2px;
}

.indicator.active::before {
  left: 0;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scaleY(1.5);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.main-image-container:hover .image-overlay {
  transform: translateY(0);
}

.tech-specs {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.spec-item {
  text-align: center;
}

.spec-label {
  display: block;
  font-size: 0.7rem;
  color: #5D3FD3;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.spec-value {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 120px;
}

.thumbnail-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #1a1a24, #0a0a12);
}

.thumbnail-item.active {
  border-color: #5D3FD3;
  box-shadow: 0 0 20px rgba(93, 63, 211, 0.4);
}

.thumbnail-item:hover {
  transform: translateX(-5px);
  border-color: rgba(93, 63, 211, 0.6);
}

.thumbnail-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
  transform: scale(1.1);
}



/* Enhanced Description */
.apollo-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.description-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #5D3FD3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.description-content p {
  color: #b8b8c8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(93, 63, 211, 0.1), rgba(123, 104, 238, 0.05));
  border: 1px solid rgba(93, 63, 211, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  border-color: rgba(93, 63, 211, 0.4);
  box-shadow: 0 10px 30px rgba(93, 63, 211, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5D3FD3, #7B68EE);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(93, 63, 211, 0.3);
}

.feature-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.feature-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #b8b8c8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .apollo-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  
  .thumbnail-item {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .apollo-isle-showcase {
    padding: 3rem 1rem;
  }
  
  .apollo-title {
    font-size: 2.5rem;
  }
  
  .apollo-subtitle {
    font-size: 1.1rem;
  }
  
  .apollo-tags {
    gap: 0.5rem;
  }
  
  .tech-tag {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  
  .apollo-description {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-specs {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery-thumbnails {
    gap: 0.5rem;
  }
  
  .thumbnail-item {
    width: 100px;
  }
  
  .thumbnail-item img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .apollo-title {
    font-size: 2rem;
  }
  
  .description-content h3 {
    font-size: 1.8rem;
  }
  
  .feature-grid {
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
}
