/**
 * Necox Transparent Video 2 - Editor & Frontend Styles
 * Hover efektleri ve size preset'leri
 * Inline <style> bloğu yerine ayrı dosya olarak yüklenir
 */

/* ═══════════════════════════════════════════════
   SIZE PRESETS
   ═══════════════════════════════════════════════ */
.necox-transparent-video-2.size-small {
    width: 300px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-medium {
    width: 500px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-large {
    width: 700px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-xlarge {
    width: 900px !important;
    max-width: 100%;
}
.necox-transparent-video-2.size-full {
    width: 100% !important;
    height: auto;
}

/* ═══════════════════════════════════════════════
   HOVER EFFECTS
   ═══════════════════════════════════════════════ */

/* Zoom */
.necox-transparent-video-2.hover-zoom:hover {
    transform: scale(1.1);
}

/* Zoom Out */
.necox-transparent-video-2.hover-zoom-out:hover {
    transform: scale(0.9);
}

/* Rotate */
.necox-transparent-video-2.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Pulse */
.necox-transparent-video-2.hover-pulse:hover {
    animation: pulse-animation-video 1s ease-in-out infinite;
}
@keyframes pulse-animation-video {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Bounce */
.necox-transparent-video-2.hover-bounce:hover {
    animation: bounce-animation-video 0.5s;
}
@keyframes bounce-animation-video {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Float */
.necox-transparent-video-2.hover-float {
    animation: float-animation-video 3s ease-in-out infinite;
}
@keyframes float-animation-video {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Glow - Parlama */
.necox-transparent-video-2.hover-glow {
    transition: filter 0.3s ease, transform 0.3s ease;
}
.necox-transparent-video-2.hover-glow:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) 
            drop-shadow(0 0 40px rgba(59, 130, 246, 0.6))
            brightness(1.2);
    transform: scale(1.05);
}

/* Rainbow - Gökkuşağı */
@keyframes rainbow-animation-video {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
.necox-transparent-video-2.hover-rainbow:hover {
    animation: rainbow-animation-video 3s linear infinite;
}

/* Radial Wave - Radyal Dalga */
.necox-transparent-video-2-wrapper:has(.hover-radial) {
    position: relative;
}
.necox-transparent-video-2-wrapper:has(.hover-radial):hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: radial-wave-video 1s ease-out infinite;
    pointer-events: none;
    border-radius: 50%;
}
@keyframes radial-wave-video {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════
   EDITOR LOADING INDICATOR
   ═══════════════════════════════════════════════ */
@keyframes necox-tv2-spin {
    to { transform: rotate(360deg); }
}

.necox-tv2-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #666;
    font-size: 13px;
    gap: 8px;
}

.necox-tv2-loading .necox-tv2-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-top-color: #666;
    border-radius: 50%;
    animation: necox-tv2-spin 0.8s linear infinite;
}
