/* Unique Smooth Loader for Just Press */
.jp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85); /* Glassmorphism effect */
    backdrop-filter: blur(15px);
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.jp-preloader-inner {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jp-loader-logo {
    position: absolute;
    width: 90px;
    z-index: 10;
    animation: pulseLogo 2s infinite ease-in-out;
}

.jp-loader-logo img {
    width: 100%;
    height: auto;
}

.jp-loader-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jp-loader-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: spinCircle 2s infinite linear;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.jp-loader-circles .circle-1 {
    border-top-color: #940b36; /* Brand Maroon */
    border-bottom-color: #940b36;
    animation-duration: 1.5s;
}

.jp-loader-circles .circle-2 {
    border-left-color: #012b3d; /* Secondary / Deep Teal */
    border-right-color: #012b3d;
    margin: 15px;
    animation-direction: reverse;
    animation-duration: 2.2s;
}

@keyframes pulseLogo {
    0% { transform: scale(0.9); opacity: 0.85; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.85; }
}

@keyframes spinCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
