.router-loader {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    color: var(--text-muted);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.loader-logo {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    animation: pulseGlow 2.5s infinite ease-in-out;
}

.loader-ring {
    position: absolute;
    inset: -6px;
    border: 3px solid transparent;
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.router-loader p {
    font-size: var(--fs-200);
    letter-spacing: 0.4px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.6));
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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