@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.scanline-line {
    position: absolute;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, rgba(255, 143, 59, 0) 0%, rgba(255, 143, 59, 0.05) 50%, rgba(255, 143, 59, 0) 100%);
    opacity: 0.1;
    animation: scanline 8s linear infinite;
    pointer-events: none;
    z-index: 10000;
}

@keyframes animate-spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: animate-spin-slow 8s linear infinite;
}

@keyframes slideInBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-bottom {
    animation: slideInBottom 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Marker Pulse */
.custom-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.custom-marker:hover {
    transform: scale(1.5);
    box-shadow: 0 0 15px currentColor;
}

.shadow-outer {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 20px var(--pip-amber-glow);
}