.turquoise-header {
  text-align: center;
  margin-bottom: 10px;
  color: black;
}

.turquoise-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.turquoise-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.turquoise-swiper-container {
  position: relative;
  overflow: hidden;
}

.turquoise-swiper-wrapper {
  display: flex;
  justify-content: flex-start;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.turquoise-swiper-slide {
  flex: 0 0 200px;
  margin-right: 10px;
  cursor: pointer;
  transform: scale(0.9);
  transition: all 0.3s ease;
  /* opacity: 0.7; */
}

.turquoise-swiper-slide.active {
  /* transform: scale(1); */
  /* opacity: 1; */
}

.turquoise-short-card {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); */
  transition: all 0.3s ease;
}

.turquoise-short-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); */
}

.turquoise-short-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.turquoise-short-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  display: none;
}

.turquoise-short-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
  pointer-events: none;
}

.turquoise-short-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.turquoise-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.turquoise-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent white;
  margin-left: 5px;
}

.turquoise-short-card:hover .turquoise-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.turquoise-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  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;
}

.turquoise-swiper-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.turquoise-swiper-nav.prev {
  left: 10px;
}

.turquoise-swiper-nav.next {
  right: 10px;
}

.turquoise-swiper-nav::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.turquoise-swiper-nav.prev::after {
  border-right: 15px solid white;
  border-top: 9px solid transparent;
  border-bottom: 7px solid transparent;
  margin-right: 3px;
}

.turquoise-swiper-nav.next::after {
  border-right: 15px solid white;
  border-top: 9px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.turquoise-swiper-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.turquoise-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.turquoise-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Reels Modal */
.turquoise-reels-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  z-index: 1000;
  overflow: hidden;
}

.turquoise-reels-modal.active {
  display: block;
}

.turquoise-reels-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.turquoise-reels-container::-webkit-scrollbar {
  display: none;
}

.turquoise-reel-item {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  position: relative;
}

.turquoise-reel-video {
  width: 100%;
  max-width: 400px;
  height: 80vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.turquoise-reel-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.turquoise-reel-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.turquoise-reel-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.turquoise-close-modal {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1001;
}

.turquoise-close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.turquoise-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: white;
}

.turquoise-loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: turquoise-spin 1s linear infinite;
}

@keyframes turquoise-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .turquoise-shorts-swiper {
    padding: 20px;
  }

  .turquoise-swiper-slide {
    flex: 0 0 205px;
    margin-left: 30px;
  }

  .turquoise-short-card {
    height: 360px;
  }

  .turquoise-header h1 {
    font-size: 2rem;
  }
}
