
    /* VİDEOLAR ALANI ÖZEL STİLLERİ */
    .videos-container {
        padding: 2rem 0;
        font-family: 'Poppins', sans-serif;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #e74c3c, #f39c12);
        border-radius: 2px;
    }
    
    .section-subtitle {
        color: #7f8c8d;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Video Grid */
    .videos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .video-item {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        position: relative;
        cursor: pointer;
    }
    
    .video-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .video-thumb {
        position: relative;
        height: 180px;
        overflow: hidden;
    }
    
    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .video-item:hover .video-thumb img {
        transform: scale(1.1);
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .video-item:hover .video-overlay {
        opacity: 1;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(231, 76, 60, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        transition: all 0.3s ease;
        transform: scale(0.9);
    }
    
    .video-item:hover .play-button {
        transform: scale(1);
        background: rgba(231, 76, 60, 1);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0.3);
    }
    
    .video-duration {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .video-content {
        padding: 1.5rem;
    }
    
    .video-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .video-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #7f8c8d;
        font-size: 0.85rem;
    }
    
    .video-date {
        display: flex;
        align-items: center;
    }
    
    .video-date i {
        margin-right: 0.4rem;
        color: #e74c3c;
    }
    
    .video-views {
        display: flex;
        align-items: center;
    }
    
    .video-views i {
        margin-right: 0.4rem;
        color: #e74c3c;
    }
    
    /* Lightbox Stilleri */
    .video-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .video-lightbox.active {
        opacity: 1;
        visibility: visible;
    }
    
    .lightbox-content {
        position: relative;
        width: 80%;
        max-width: 900px;
        background: black;
        border-radius: 8px;
        overflow: hidden;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }
    
    .video-lightbox.active .lightbox-content {
        transform: scale(1);
    }
    
    .lightbox-iframe-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }
    
    .lightbox-iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .lightbox-close {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        transition: color 0.2s;
    }
    
    .lightbox-close:hover {
        color: #e74c3c;
    }
    
    .lightbox-title {
        padding: 1rem;
        color: white;
        font-size: 1.2rem;
        font-weight: 500;
        background: rgba(0, 0, 0, 0.8);
    }
    
    /* Sayfalama */
    .videos-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .video-page-btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: white;
        color: #7f8c8d;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #eaeaea;
    }
    
    .video-page-btn:hover,
    .video-page-btn.active {
        background: #e74c3c;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    }
    
    .video-page-btn.prev,
    .video-page-btn.next {
        width: auto;
        padding: 0 1.2rem;
        font-weight: 500;
    }
    
    .video-page-btn.prev i,
    .video-page-btn.next i {
        margin: 0 0.3rem;
    }
    
    /* Responsive Tasarım */
    @media (max-width: 992px) {
        .videos-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .lightbox-content {
            width: 90%;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .videos-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .video-thumb {
            height: 200px;
        }
        
        .lightbox-content {
            width: 95%;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .videos-pagination {
            flex-wrap: wrap;
        }
        
        .play-button {
            width: 60px;
            height: 60px;
            font-size: 1.7rem;
        }
    }