.np-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    font-family: Arial, sans-serif;
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility .45s ease;
}

.np-loader.np-loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.np-logo-box {
    position: relative;
    text-align: center;
}

.np-rotating-circle {
    position: absolute;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        transparent 0deg,
        transparent 90deg,
        #d99a27 140deg,
        #071c34 210deg,
        transparent 280deg,
        transparent 360deg
    );
    animation: npCircleRotate 2s linear infinite;
    z-index: 0;
}

.np-rotating-circle::after {
    content: "";
    position: absolute;
    inset: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.np-logo {
    position: relative;
    z-index: 2;
    width: 320px;
    max-width: 90%;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation:
        npLogoReveal 1.5s ease forwards,
        npLogoFloat 2.4s ease-in-out infinite 1.6s;
}

@keyframes npCircleRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes npLogoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes npLogoFloat {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.03) translateY(-8px);
    }
}

@media(max-width:600px) {
    .np-rotating-circle {
        width: 300px;
        height: 300px;
    }

    .np-logo {
        width: 260px;
    }
}