/* 2026 Aesthetic Animations */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(245, 166, 35, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(245, 166, 35, 0.3);
    }
}

@keyframes float-element {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink-red {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes flow-shine {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-pulse-glow {
    animation: pulse-glow 3s infinite ease-in-out;
}

.animate-float {
    animation: float-element 4s infinite ease-in-out;
}

.animate-blink-red {
    animation: blink-red 1s infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-text-shine {
    background: linear-gradient(90deg, #f5a623 0%, #fff 50%, #f5a623 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flow-shine 3s linear infinite;
}

.custom-grid-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
}