
        .video-replay-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 99999; /* Yüksek z-index değeri */
            cursor: pointer;
        }
        
        .replay-icon {
            font-size: 80px;
            color: white;
            transition: transform 0.3s ease;
            width: 100px;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .replay-icon:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* Fancybox içeriği için z-index düzenlemesi */
        .fancybox-container {
            z-index: 9999; /* Fancybox'ın z-index'ini ayarla */
        }
        
        /* Fancybox iframe için özel stiller */
        .fancybox-slide--iframe .fancybox-content {
            width: 100% !important;
            height: 100% !important;
            max-width: none !important;
            max-height: none !important;
            margin: 0 !important;
            z-index: 9998; /* Overlay'den düşük olmalı */
        }
        
        /* Mobil cihazlar için boyut ayarı */
        @media (max-width: 768px) {
            .replay-icon {
                font-size: 60px;
                width: 80px;
                height: 80px;
            }
        }
        
        /* Fancybox toolbar'ı gizleme (isteğe bağlı) */
        .fancybox-toolbar {
            display: none !important;
        }
        
        /* YouTube iframe'i için düzenleme */
        .fancybox-iframe {
            z-index: 9998; /* Overlay'den düşük olmalı */
        }
