.gallery-grid-2026 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item-2026 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gallery-item-2026:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery-item-2026 img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item-2026:hover img {
    transform: scale(1.05);
}

.gallery-caption-2026 {
    padding: 10px;
    background: rgba(0,0,0,0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-2026:hover .gallery-caption-2026 {
    transform: translateY(0);
}

.gallery-caption-2026 .img-title {
    margin: 0;
    font-size: 12px;
    color: white;
    text-align: center;
    font-weight: 500;
}

/* Lightbox altyazı stilleri */
.lightbox .lb-data .lb-caption {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 8px;
}

.main-img-2026 {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid-2026 {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .gallery-item-2026 img {
        height: 80px;
    }
    
    .gallery-caption-2026 .img-title {
        font-size: 10px;
    }
}
/* Lightbox sabit boyut - resim boyutuna göre değil */
@media (max-width: 768px) {
    .lb-outerContainer {
        width: 95vw !important;
        height: 80vh !important;
    }
    
    .lb-container {
        width: 100% !important;
        height: 100% !important;
    }
    
    .lb-container img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
}
/* ============================================
   SOSYAL MEDYA PAYLAŞIM ARAÇLARI - RENKLİ
   ============================================ */

.social-share-2026 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
    flex-wrap: wrap;
}

.social-share-small {
    padding: 8px 0 2px 0;
    border-top: none;
}

.share-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.share-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 50% !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.share-btn i {
    font-size: inherit !important;
    line-height: 1 !important;
    pointer-events: none !important;
}

.social-share-small .share-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 13px !important;
}

.share-btn:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* ===== SOSYAL MEDYA PLATFORM RENKLERİ (HER ZAMAN RENKLİ) ===== */

/* Facebook */
.share-btn.share-facebook {
    background: #1877f2 !important;
    color: #fff !important;
}
.share-btn.share-facebook:hover {
    background: #0d65d9 !important;
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.5) !important;
}

/* Twitter / X */
.share-btn.share-twitter {
    background: #000000 !important;
    color: #fff !important;
}
.share-btn.share-twitter:hover {
    background: #1a1a1a !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5) !important;
}

/* LinkedIn */
.share-btn.share-linkedin {
    background: #0a66c2 !important;
    color: #fff !important;
}
.share-btn.share-linkedin:hover {
    background: #005582 !important;
    box-shadow: 0 6px 25px rgba(10, 102, 194, 0.5) !important;
}

/* Pinterest */
.share-btn.share-pinterest {
    background: #e60023 !important;
    color: #fff !important;
}
.share-btn.share-pinterest:hover {
    background: #cc001f !important;
    box-shadow: 0 6px 25px rgba(230, 0, 35, 0.5) !important;
}

/* WhatsApp */
.share-btn.share-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
}
.share-btn.share-whatsapp:hover {
    background: #1da851 !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5) !important;
}

/* Link Kopyala */
.share-btn.share-copy {
    background: #6c63ff !important;
    color: #fff !important;
}
.share-btn.share-copy:hover {
    background: #5a52d9 !important;
    box-shadow: 0 6px 25px rgba(108, 99, 255, 0.5) !important;
}

/* ===== BÜYÜK RESİM İÇİN ÖZEL ===== */

.main-image-container {
    margin-bottom: 10px;
}

.main-image-container .social-share-2026 {
    padding: 14px 0 2px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-image-container .share-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    font-size: 18px !important;
}

/* ===== GALERİ ITEM DÜZENİ ===== */

.gallery-item-2026 {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item-2026:hover {
    background: rgba(255, 255, 255, 0.04);
}

.gallery-item-2026 a {
    display: block;
    line-height: 0;
}

.gallery-item-2026 img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.gallery-caption-2026 {
    padding: 8px 12px 0 12px;
}

.gallery-caption-2026 .img-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.gallery-item-2026 .social-share-2026 {
    padding: 6px 12px 10px 12px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .social-share-2026 {
        gap: 8px;
        justify-content: center;
    }
    
    .share-label {
        width: 100%;
        text-align: center;
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .share-btn {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        font-size: 14px !important;
    }
    
    .social-share-small .share-btn {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        font-size: 12px !important;
    }
    
    .main-image-container .share-btn {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        font-size: 15px !important;
    }
}

/* ===== BİLDİRİM ANİMASYONU ===== */

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.share-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}
/* ============================================
   KÜÇÜK RESİM ALTINDA BAŞLIK (YENİ)
   ============================================ */
.image-title-wrapper {
    text-align: center;
    margin: 8px 0 4px 0;
    padding: 0 4px;
    min-height: 30px;
}

.image-title {
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2d3436;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    border: 1px solid rgba(0, 123, 255, 0.12);
    letter-spacing: 0.3px;
    line-height: 1.4;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
    cursor: help;
    transition: all 0.3s ease;
}

.image-title:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-1px);
}

/* ============================================
   BÜYÜK RESİM ALTINDA BAŞLIK (YENİ)
   ============================================ */
.image-title-main-wrapper {
    text-align: center;
    margin: 10px 0 6px 0;
}

.image-title-main {
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    padding: 8px 20px;
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 5px solid #007bff;
    letter-spacing: 0.5px;
}

/* ============================================
   MOBİL UYUM
   ============================================ */
@media (max-width: 768px) {
    .image-title {
        font-size: 12px;
        padding: 3px 10px;
        max-width: 130px;
    }
    
    .image-title-main {
        font-size: 17px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .image-title {
        font-size: 11px;
        padding: 3px 8px;
        max-width: 100px;
        border-radius: 15px;
    }
    
    .image-title-main {
        font-size: 15px;
        padding: 4px 12px;
        border-left-width: 4px;
    }
}
/* ============================================
   LIGHTBOX TITLE DÜZELTMESİ - SADECE MOBİL
   ============================================ */

/* Lightbox title - masaüstünde normal kalsın */
.lb-data .lb-caption {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #fff !important;
}

/* Lightbox image sayacı */
.lb-data .lb-number {
    font-size: 12px !important;
    color: #999 !important;
}

/* SADECE MOBİLDE DÜZELTME */
@media (max-width: 768px) {
    .lb-data .lb-caption {
        font-size: 13px !important;
        white-space: normal !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
        margin-bottom: 5px !important;
        padding: 0 5px !important;
        word-break: break-word !important;
        display: block !important;
    }
    
    .lb-data .lb-number {
        font-size: 11px !important;
        display: block !important;
        margin-top: 3px !important;
        clear: both !important;
    }
    
    .lb-dataContainer {
        padding: 30px 10px 15px 10px !important;
    }
}

/* ============================================
   RESİM TITLE - SADECE MOBİLDE GÖRÜNSÜN
   ============================================ */

.image-title-wrapper {
    display: none !important; /* Masaüstünde gizli */
}

/* SADECE MOBİLDE GÖSTER */
@media (max-width: 768px) {
    .image-title-wrapper {
        display: block !important;
        margin-top: 6px !important;
        padding: 0 2px !important;
    }
    
    .image-title {
        font-size: 11px !important;
        font-weight: 500 !important;
        color: #2c3e50 !important;
        display: block !important;
        text-align: center !important;
        line-height: 1.3 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .image-title {
        font-size: 10px !important;
    }
    
    .image-title-wrapper {
        margin-top: 4px !important;
    }
}

/* ============================================================ */
/* YOUTUBE 4 VİDEO GRID - 4 SIRA YAN YANA                     */
/* ============================================================ */

/* ===== TEMEL KONTEYNER ===== */
.youtube-section-detay {
    margin-top: 25px;
    margin-bottom: 30px;
    background: #0f0f0f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.youtube-section-detay:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.youtube-container {
    padding: 20px;
}

/* ===== HEADER ===== */
.youtube-header-detay {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.youtube-header-detay i {
    color: #ff0000;
    font-size: 28px;
}

.video-count-badge {
    background: rgba(255, 0, 0, 0.15);
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 0, 0, 0.15);
}

.video-count-badge i {
    font-size: 11px;
    color: #ff0000;
}

/* ===== GRID SİSTEMİ - 4 SIRA YAN YANA ===== */
.youtube-grid {
    display: grid;
    gap: 16px;
}

.youtube-grid-1 {
    grid-template-columns: 1fr;
}

.youtube-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.youtube-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.youtube-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.youtube-grid-item {
    display: flex;
    flex-direction: column;
}

/* ===== VİDEO WRAPPER ===== */
.youtube-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== YOUTUBE BİLGİ ALANI ===== */
.youtube-info-detay.premium {
    padding: 14px 16px 12px 16px;
    margin-top: 8px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.youtube-info-detay.premium.mini {
    padding: 8px 10px 6px 10px;
    margin-top: 4px;
    border-radius: 8px;
}

.youtube-info-detay.premium.mini:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== AVATAR ===== */
.youtube-info-avatar.small {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}

.youtube-info-avatar.small i {
    font-size: 12px !important;
    color: #fff;
}

/* ===== BİLGİ ALANI ===== */
.youtube-info-title.small {
    font-size: 12px !important;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== AÇIKLAMA - TAMAMI GÖSTER ===== */
.youtube-info-description.small {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    /* KESMEYİ KALDIR - TAMAMINI GÖSTER */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
    /* overflow: hidden; */
}

.youtube-info-text.mini {
    padding: 4px 8px !important;
    border-left: 2px solid rgba(255, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.meta-badge.small {
    font-size: 7px !important;
    font-weight: 700;
    padding: 1px 6px !important;
    border-radius: 50px;
    background: rgba(255, 0, 0, 0.12);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.meta-badge.small i {
    font-size: 4px;
    color: #ff0000;
    animation: blink-dot 1.2s ease-in-out infinite;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ===== YOUTUBE İZLE BUTONU ===== */
.youtube-watch-btn.small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px !important;
    font-size: 9px !important;
    font-weight: 600;
    border-radius: 20px !important;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.youtube-watch-btn.small:hover {
    background: #cc0000;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.25);
    text-decoration: none;
}

.youtube-watch-btn.small i {
    font-size: 10px !important;
}

.youtube-info-footer.mini {
    margin-top: 4px !important;
    padding-top: 4px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.youtube-info-title-group {
    flex: 1;
    min-width: 0;
}

.youtube-info-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.youtube-info-header {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 4px;
}

/* ============================================================ */
/* MASAÜSTÜ (1200px ve üzeri) - 4 SIRA YAN YANA               */
/* ============================================================ */

@media (min-width: 1200px) {
    
    /* 4 Video - 4 sıra yan yana */
    .youtube-grid-4 {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }
    
    /* Video boyutları - küçük */
    .multi-video-4 .video-responsive {
        padding-bottom: 56.25% !important;
        max-height: 170px !important;
    }
    
    .multi-video-4 .video-responsive iframe {
        max-height: 170px !important;
    }
    
    /* 4 Video - Bilgi alanı küçük */
    .multi-video-4 .youtube-info-title.small {
        font-size: 11px !important;
        -webkit-line-clamp: 1 !important;
    }
    
    .multi-video-4 .youtube-info-description.small {
        font-size: 10px !important;
        -webkit-line-clamp: 1 !important;
    }
    
    .multi-video-4 .youtube-watch-btn.small {
        padding: 2px 8px !important;
        font-size: 8px !important;
    }
    
    .multi-video-4 .youtube-watch-btn.small i {
        font-size: 9px !important;
    }
    
    .multi-video-4 .youtube-info-detay.premium.mini {
        padding: 4px 6px 4px 6px !important;
    }
    
    .multi-video-4 .youtube-info-avatar.small {
        width: 20px !important;
        height: 20px !important;
    }
    
    .multi-video-4 .youtube-info-avatar.small i {
        font-size: 9px !important;
    }
    
    .multi-video-4 .meta-badge.small {
        font-size: 6px !important;
        padding: 1px 4px !important;
    }
    
    .multi-video-4 .youtube-info-text.mini {
        padding: 3px 6px !important;
    }
    
    .multi-video-4 .youtube-info-header {
        gap: 4px !important;
    }
}

/* ============================================================ */
/* ORTA MASAÜSTÜ (992px - 1199px) - 3 SIRA YAN YANA           */
/* ============================================================ */

@media (min-width: 992px) and (max-width: 1199px) {
    
    /* 4 Video - 3 sıra yan yana */
    .youtube-grid-4 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
    
    .multi-video-4 .video-responsive {
        max-height: 200px !important;
    }
    
    .multi-video-4 .video-responsive iframe {
        max-height: 200px !important;
    }
    
    .multi-video-4 .youtube-info-title.small {
        font-size: 11px !important;
    }
    
    .multi-video-4 .youtube-info-description.small {
        font-size: 10px !important;
    }
}

/* ============================================================ */
/* TABLET (769px - 991px) - 2 SIRA YAN YANA                    */
/* ============================================================ */

@media (min-width: 769px) and (max-width: 991px) {
    
    /* 4 Video - 2 sıra yan yana */
    .youtube-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .youtube-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .multi-video-4 .video-responsive {
        max-height: 240px !important;
    }
    
    .multi-video-4 .video-responsive iframe {
        max-height: 240px !important;
    }
    
    .multi-video-4 .youtube-info-title.small {
        font-size: 12px !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .multi-video-4 .youtube-info-description.small {
        font-size: 11px !important;
        -webkit-line-clamp: 2 !important;
    }
}

/* ============================================================ */
/* MOBİL (768px ve altı) - TEK SIRA                            */
/* ============================================================ */

@media (max-width: 768px) {
    .youtube-grid-1,
    .youtube-grid-2,
    .youtube-grid-3,
    .youtube-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .youtube-container {
        padding: 15px !important;
    }
    
    .youtube-header-detay {
        font-size: 15px !important;
    }
    
    .youtube-header-detay i {
        font-size: 22px !important;
    }
    
    .video-responsive {
        padding-bottom: 56.25% !important;
        max-height: none !important;
    }
    
    .video-responsive iframe {
        max-height: none !important;
    }
    
    .youtube-info-detay.premium.mini {
        padding: 12px 14px 10px 14px !important;
    }
    
    .youtube-info-title.small {
        font-size: 14px !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .youtube-info-description.small {
        font-size: 13px !important;
        -webkit-line-clamp: 3 !important;
    }
    
    .youtube-info-avatar.small {
        width: 36px !important;
        height: 36px !important;
    }
    
    .youtube-info-avatar.small i {
        font-size: 16px !important;
    }
    
    .meta-badge.small {
        font-size: 9px !important;
        padding: 2px 10px !important;
    }
    
    .youtube-watch-btn.small {
        padding: 6px 18px !important;
        font-size: 12px !important;
    }
    
    .youtube-watch-btn.small i {
        font-size: 16px !important;
    }
}

/* ===== KÜÇÜK MOBİL (480px ve altı) ===== */
@media (max-width: 480px) {
    .youtube-grid-1,
    .youtube-grid-2,
    .youtube-grid-3,
    .youtube-grid-4 {
        gap: 20px !important;
    }
    
    .youtube-container {
        padding: 12px !important;
    }
    
    .youtube-header-detay {
        font-size: 13px !important;
    }
    
    .youtube-header-detay i {
        font-size: 18px !important;
    }
    
    .video-count-badge {
        font-size: 9px !important;
        padding: 2px 10px !important;
    }
    
    .video-count-badge i {
        font-size: 9px !important;
    }
    
    .youtube-info-title.small {
        font-size: 12px !important;
    }
    
    .youtube-info-description.small {
        font-size: 11px !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .youtube-info-avatar.small {
        width: 28px !important;
        height: 28px !important;
    }
    
    .youtube-info-avatar.small i {
        font-size: 12px !important;
    }
    
    .meta-badge.small {
        font-size: 8px !important;
        padding: 1px 8px !important;
    }
    
    .youtube-watch-btn.small {
        padding: 4px 14px !important;
        font-size: 10px !important;
    }
    
    .youtube-watch-btn.small i {
        font-size: 12px !important;
    }
}

/* ===== YAKINDA YÜKLENECEK ===== */
.youtube-coming-soon {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.coming-soon-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.youtube-coming-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    min-height: 280px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.05), transparent 70%);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.coming-soon-icon i {
    font-size: 36px;
    color: #ff0000;
    opacity: 0.8;
}

.coming-soon-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.coming-soon-text {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
}

.coming-soon-animation {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.coming-soon-animation span {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: loading-dots 1.4s infinite ease-in-out both;
}

.coming-soon-animation span:nth-child(1) { animation-delay: -0.32s; }
.coming-soon-animation span:nth-child(2) { animation-delay: -0.16s; }
.coming-soon-animation span:nth-child(3) { animation-delay: 0s; }
.coming-soon-animation span:nth-child(4) { animation-delay: 0.16s; }
.coming-soon-animation span:nth-child(5) { animation-delay: 0.32s; }

@keyframes loading-dots {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ===== DARK MODE DESTEĞİ ===== */
@media (prefers-color-scheme: light) {
    .youtube-section-detay {
        background: #f8f9fa;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    
    .youtube-header-detay {
        color: #1a1a2e;
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }
    
    .youtube-info-title.small {
        color: #1a1a2e;
    }
    
    .youtube-info-description.small {
        color: rgba(0, 0, 0, 0.6);
    }
    
    .youtube-info-detay.premium.mini {
        background: rgba(0, 0, 0, 0.02);
        border-color: rgba(0, 0, 0, 0.06);
    }
    
    .youtube-info-text.mini {
        background: rgba(0, 0, 0, 0.02);
        border-left-color: rgba(255, 0, 0, 0.3);
    }
    
    .youtube-coming-soon {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }
    
    .coming-soon-title {
        color: #1a1a2e;
    }
    
    .coming-soon-text {
        color: #6c757d;
    }
}

/* ============================================================ */
/* VİDEO AÇIKLAMA - TÜM CİHAZLARDA DAHA BÜYÜK                  */
/* ============================================================ */

/* === Tüm Cihazlar için Temel === */
.youtube-info-description.small {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    margin: 0 !important;
    word-wrap: break-word !important;
    white-space: normal !important;
}

.youtube-info-title.small {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
}

.youtube-info-text.mini {
    padding: 10px 14px !important;
    border-left: 3px solid rgba(255, 0, 0, 0.4) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 8px !important;
}

.youtube-info-avatar.small {
    width: 36px !important;
    height: 36px !important;
}

.youtube-info-avatar.small i {
    font-size: 16px !important;
}

.meta-badge.small {
    font-size: 10px !important;
    padding: 3px 12px !important;
}

.youtube-watch-btn.small {
    padding: 6px 16px !important;
    font-size: 13px !important;
}

.youtube-watch-btn.small i {
    font-size: 15px !important;
}

/* === Masaüstü (1200px ve üzeri) === */
@media (min-width: 1200px) {
    .youtube-info-description.small {
        font-size: 15px !important;
        line-height: 1.7 !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .youtube-info-title.small {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .youtube-info-text.mini {
        padding: 12px 16px !important;
        border-left-width: 4px !important;
    }
    
    .youtube-info-avatar.small {
        width: 40px !important;
        height: 40px !important;
    }
    
    .youtube-info-avatar.small i {
        font-size: 18px !important;
    }
    
    .meta-badge.small {
        font-size: 11px !important;
        padding: 4px 14px !important;
    }
    
    .youtube-watch-btn.small {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
    
    .youtube-watch-btn.small i {
        font-size: 16px !important;
    }
}

/* === Orta Masaüstü (992px - 1199px) === */
@media (min-width: 992px) and (max-width: 1199px) {
    .youtube-info-description.small {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }
    
    .youtube-info-title.small {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
    
    .youtube-info-text.mini {
        padding: 10px 14px !important;
    }
}

/* === Tablet (769px - 991px) === */
@media (min-width: 769px) and (max-width: 991px) {
    .youtube-info-description.small {
        font-size: 15px !important;
        line-height: 1.7 !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .youtube-info-title.small {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .youtube-info-text.mini {
        padding: 12px 16px !important;
        border-left-width: 4px !important;
    }
    
    .youtube-info-avatar.small {
        width: 38px !important;
        height: 38px !important;
    }
    
    .youtube-info-avatar.small i {
        font-size: 17px !important;
    }
}

/* === Mobil (768px ve altı) === */
@media (max-width: 768px) {
    .youtube-info-description.small {
        font-size: 16px !important;
        line-height: 1.8 !important;
        color: rgba(255, 255, 255, 0.92) !important;
    }
    
    .youtube-info-title.small {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }
    
    .youtube-info-text.mini {
        padding: 14px 18px !important;
        border-left-width: 4px !important;
        border-radius: 10px !important;
    }
    
    .youtube-info-detay.premium.mini {
        padding: 14px 16px 12px 16px !important;
    }
    
    .youtube-info-avatar.small {
        width: 40px !important;
        height: 40px !important;
    }
    
    .youtube-info-avatar.small i {
        font-size: 18px !important;
    }
    
    .meta-badge.small {
        font-size: 11px !important;
        padding: 4px 12px !important;
    }
    
    .youtube-watch-btn.small {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
    
    .youtube-watch-btn.small i {
        font-size: 16px !important;
    }
}

/* === Küçük Mobil (480px ve altı) === */
@media (max-width: 480px) {
    .youtube-info-description.small {
        font-size: 15px !important;
        line-height: 1.7 !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .youtube-info-title.small {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .youtube-info-text.mini {
        padding: 12px 16px !important;
        border-left-width: 3px !important;
    }
    
    .youtube-info-avatar.small {
        width: 34px !important;
        height: 34px !important;
    }
    
    .youtube-info-avatar.small i {
        font-size: 15px !important;
    }
    
    .meta-badge.small {
        font-size: 10px !important;
        padding: 3px 10px !important;
    }
    
    .youtube-watch-btn.small {
        padding: 6px 16px !important;
        font-size: 13px !important;
    }
    
    .youtube-watch-btn.small i {
        font-size: 14px !important;
    }
}

/* === Dark Mode desteği === */
@media (prefers-color-scheme: light) {
    .youtube-info-description.small {
        color: rgba(0, 0, 0, 0.8) !important;
    }
    
    .youtube-info-title.small {
        color: #1a1a2e !important;
    }
    
    .youtube-info-text.mini {
        background: rgba(0, 0, 0, 0.03) !important;
        border-left-color: rgba(255, 0, 0, 0.5) !important;
    }
}

