.borderup {
border: 1px dashed white;
border-radius: 15px 15px 0px 0px;
padding: 8px;
margin: 6px;
}
.border00 {
border: 1px dashed white;
padding: 8px;
margin: 6px;
}
.borderdown {
border: 1px dashed white;
border-radius: 0px 0px 15px 15px;
padding: 8px;
margin: 6px;
}





.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background-color: #333;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  opacity: 0.9;
  color: #fff;
}

/* Platform renkleri */
.telegram { background: #0088cc; }
.whatsapp { background: #25d366; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok { background: #000000; }
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.reddit { background: #ff4500; }
.pinterest { background: #bd081c; }



.doramalar-section {
  background: linear-gradient(to right, #111, #4b0000);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
}

.doramalar-header .section-title {
  font-size: 2rem;
}

.doramalar-header .section-subtitle {
  font-size: 1rem;
  color: #bbb;
}

.see-more {
  color: #ff0000;
  transition: color 0.2s;
}
.see-more:hover {
  color: #fff;
}

.doramalar-slider {
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}
.doramalar-slider::-webkit-scrollbar {
  height: 8px;
}
.doramalar-slider::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}

.dorama-card {
  flex: 0 0 auto;
  width: 200px;
  cursor: pointer;
}

.dorama-card .poster {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.dorama-card .poster img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.dorama-card:hover .poster img {
  transform: scale(1.05);
}

.age-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
}

.rating-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 6px;
}

.dorama-card .title {
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
  color: #eee;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

  .doramalar-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
  }

  .doramalar-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }




.vid-lab-premium2 {
    font-size: 12px;
    background-color: rgba(255, 0, 0, 0.9);
    border-radius: 5px;
    padding: 2px 5px;
    position: absolute;
    z-index: 2;
    right: 8px;
    top: 8px;
}
.vid-lab-premium3 {
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 2px 5px;
    position: absolute;
    z-index: 2;
    right: 8px;
    top: 8px;
}
.vid-lab-premium2, vid-lab-premium3:hover {
color: #ffffff;
}
.vid-lab-premium3, vid-lab-premium2:hover {
color: #ffffff;
}





/* --- GENEL LAZY AYARLARI --- */
img.lazy {
    display: block;
    width: 100%; /* Bulunduğu kutuyu tamamen kaplar (Responsive) */
    height: auto;
    object-fit: cover; /* Resim orana tam oturmazsa bozulmasın diye kırpar */
    
    /* İSKELET EKRANI (Skeleton) - Başlangıç Rengi */
    background-color: #121212; 
    
    /* Önceki dalga efektini iptal ediyoruz, sadece renk değişimi olacak */
    background-image: none;
    
    /* Nefes Alma Animasyonu (Pulse) */
    animation: skeletonPulse 1.8s ease-in-out infinite;
    
    /* Geçiş Efekti (Resim yüklendiğinde yumuşak geçiş) */
    opacity: 1; 
    transition: opacity 0.4s ease, filter 0.4s ease;
}

/* --- ORAN AYARLARI (Senin Ayarların) --- */

/* Yatay resimler için ortalama oran (16:9) */
img.lazy.yatay {
    aspect-ratio: 16 / 9;
}

/* Dikey resimler için ortalama oran (2:3) */
img.lazy.dikey {
    aspect-ratio: 2 / 3; 
}

/* --- YENİ ANİMASYON: NEFES ALMA (PULSE) --- */
@keyframes skeletonPulse {
    0% {
        background-color: #121212; /* En koyu hali (Siyah) */
    }
    50% {
        background-color: #252525; /* Hafif aydınlanmış hali (Koyu Gri) */
    }
    100% {
        background-color: #121212; /* Tekrar en koyu hali */
    }
}

/* --- YÜKLENDİKTEN SONRA --- */
img.lazy-loaded {
    animation: none; /* Animasyonu durdur */
    background-color: transparent; /* Arka plan rengini kaldır */
    aspect-ratio: auto; /* Yüklenince resmin kendi orijinal boyutuna dön */
}