/* Animated SVG Icons Styles */
.animated-video-icon {
    animation: pulse 2s infinite;
    transform-origin: center;
    transition: transform 0.3s ease;
    width: 100px;
    height: 100px;
}

/* Stats Icons Animations */
.stat-icon {
    animation: none;
}

.stat-icon .camera-body {
    animation: colorPulse 3s infinite;
}

.stat-icon .lens,
.stat-icon .signal {
    animation: glowPulse 3s infinite;
}

@keyframes colorPulse {
    0% {
        fill: var(--pink);
    }
    50% {
        fill: #FF4081;
    }
    100% {
        fill: var(--pink);
    }
}

@keyframes glowPulse {
    0% {
        stroke-opacity: 0.6;
        stroke-width: 1.5;
    }
    50% {
        stroke-opacity: 1;
        stroke-width: 2;
    }
    100% {
        stroke-opacity: 0.6;
        stroke-width: 1.5;
    }
}

.animated-video-icon .camera-body {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.animated-video-icon .lens {
    fill: #E91E63;
    animation: lens-glow 2s infinite;
    transform-origin: center;
}

.animated-video-icon .signal {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0;
    animation: signal-wave 2s infinite;
}

.animated-video-icon .signal-2 {
    animation-delay: 0.5s;
}

.animated-video-icon .signal-3 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes lens-glow {
    0% {
        fill: #E91E63;
    }
    50% {
        fill: #FF4081;
    }
    100% {
        fill: #E91E63;
    }
}

@keyframes signal-wave {
    0% {
        opacity: 0;
        transform: translateX(-5px);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(5px);
    }
}

/* Large Video Icon Animation */
.large-video-icon {
    animation: float 3s ease-in-out infinite;
}

.large-video-icon .camera-body {
    fill: var(--primary);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.large-video-icon .lens {
    fill: var(--pink);
    animation: lens-pulse 2s infinite;
}

.large-video-icon .connection-line {
    stroke: var(--pink);
    stroke-dasharray: 10;
    animation: dash 20s linear infinite;
    opacity: 0.6;
}

@keyframes lens-pulse {
    0% {
        transform: scale(1);
        fill: var(--pink);
    }
    50% {
        transform: scale(1.1);
        fill: #FF4081;
    }
    100% {
        transform: scale(1);
        fill: var(--pink);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}
