/* Simplified Hero Slider Styles - Full Width, No Overlays */
:root {
  --primary: #adff2f;
  --primary-hover: #9acd32;
  --primary-shadow: rgba(173, 255, 47, 0.4);
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  margin: 60px 0 2rem;
  overflow: hidden;
}

/* Slider Structure */
.slider-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  opacity: 0.7;
  transition: var(--transition);
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
  
}

.slide.active img {
  transform: scale(1.05);
}

/* Content */
.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2.5rem 2.5rem;
  color: white;
  z-index: 2;
}

.movie-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  padding-left: 24px;
}

.slider-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  opacity: 0.95;
}

/* Play Button */
.play-now {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #000;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.play-now::before {
  content: "▶";
  font-size: 0.875rem;
}

.play-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--primary-shadow);
}

/* Navigation */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.343);
  color: white;
  border: none;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-weight: bold;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
  font-size: 1.2rem;
}

.prev-btn {
  left: .7rem;
}
.next-btn {
  right: .5rem;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(153, 205, 50, 0.931);
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px var(--primary-shadow);
}

/* Dots */
.dots-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--primary-shadow);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-slider {
    height: 55vh;
    min-height: 450px;
  }
  .slider-content {
    padding: 2.5rem 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
    min-height: 450px;
    margin-top: 60px;
  }

  .slide {
    min-width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .slider-content {
    padding: 2rem 1.25rem 1.25rem;
  }

  .movie-title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .slider-content p {
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .play-now {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }

  .prev-btn,
  .next-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  .prev-btn {
    left: 1rem;
  }
  .next-btn {
    right: 1rem;
  }

  .dots-container {
    bottom: 1.25rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .dot {
    width: 0.625rem;
    height: 0.625rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 75vh;
    min-height: 400px;
  }

  .slide {
    min-width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .slider-content {
    padding: 1.5rem 1rem 4rem;
  }

  .movie-title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    margin-bottom: 0.5rem;
  }

  .slider-content p {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    margin-bottom: 1rem;
  }

  .play-now {
    padding: 0.625rem 1rem;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
  }

  .prev-btn,
  .next-btn {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.9rem;
  }

  .prev-btn {
    left: 0.75rem;
  }
  .next-btn {
    right: 0.75rem;
  }

  .dots-container {
    bottom: 0.5rem;
    padding: 0.3rem 0.6rem;
    gap: 0.3rem;
  }

  .dot {
    width: 0.4rem;
    height: 0.4rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  .slide.active img {
    transform: none;
  }
}

.play-now:focus,
.prev-btn:focus,
.next-btn:focus,
.dot:focus {
  outline: 0.5px solid rgba(172, 255, 47, 0.483);
  outline-offset: .5px;
}










       

       
        /* ==================== MAIN CONTENT ==================== */
        

        .content-section {
            margin-bottom: 80px;
            padding: 0 60px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-title i {
            color: var(--primary);
            font-size: 1.8rem;
        }

        .see-all-btn {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition-fast);
            font-size: 1.1rem;
        }

        .see-all-btn:hover {
            color: var(--primary-light);
        }

        /* ==================== MOVIES GRID ==================== */
        

        

        .movie-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--glow);
        }

        

        

        

       

        

        

       
        

        /* ==================== LOADING SPINNER ==================== */
        .loading-spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(173, 255, 47, 0.3);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

       
