.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.3rem 1rem;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

.sliderWrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: 100%;
}

.navButton {
  background: #10b981;
  color: white;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.navButton:hover:not(:disabled) {
  background: #059669;
  transform: scale(1.1);
}

.navButton:active:not(:disabled) {
  transform: scale(0.95);
}

.navButton:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  opacity: 0.5;
}

.sliderContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex: 1;
}

.slidesTrack {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
}

.videoCard {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

.videoWrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.videoWrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

.slideInfo {
  margin-top: 1rem;
  text-align: center;
}

.slideTitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.slideDescription {
  font-size: 0.875rem;
  color: #6b7280;
}

.dotsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: #9ca3af;
  transform: scale(1.2);
}

.dot.activeDot {
  background: #10b981;
  width: 2rem;
  border-radius: 0.375rem;
}


@media (max-width: 1024px) {
  .videoCard {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .sliderWrapper {
    gap: 0.5rem;
  }

  .navButton {
    width: 2.5rem;
    height: 2.5rem;
  }

  .videoCard {
    flex: 0 0 100%;
  }

  .slidesTrack {
    gap: 1rem;
  }

  .title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .slideTitle {
    font-size: 1rem;
  }

  .slideDescription {
    font-size: 0.8125rem;
  }
}