/* ============================================
   LOTTIE LOADER STYLES
   Premium loading animations
   ============================================ */

.lottie-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lottie-loader.active {
    opacity: 1;
    visibility: visible;
}

.lottie-loader-content {
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.lottie-loader.active .lottie-loader-content {
    transform: scale(1);
}

.lottie-animation {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.3));
}

.lottie-text {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Dark theme uyumluluğu */
[data-theme="dark"] .lottie-loader {
    background: rgba(15, 23, 42, 0.9);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lottie-animation {
        width: 150px;
        height: 150px;
    }

    .lottie-text {
        font-size: 1rem;
    }
}