/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Custom animations for AI Video Analyzer */
@keyframes dash {
    to {
        stroke-dashoffset: -300;
    }
}

@keyframes glow {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(120, 137, 255, 0.5));
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(120, 137, 255, 0.8));
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-dash {
    animation: dash 3s linear infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Hide lock icon on mobile devices */
.lock-icon-mobile-hidden {
    display: none;
}

/* Show lock icon on medium screens and larger */
@media (min-width: 768px) {
    .lock-icon-mobile-hidden {
        display: block;
    }
}
