﻿.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

/* Loader box */
.loader-box {
    text-align: center;
}

/* GOLD COIN */
.loader-img {
    width: 120px;
    height: 120px;

    animation: rotateCoin 2s linear infinite,
               glowPulse 2s ease-in-out infinite;

    filter: drop-shadow(0 0 10px rgba(240,209,92,0.6));
}

/* Text */
.loader-text {
    margin-top: 15px;
    color: #f0d15c;
    font-size: 14px;
    letter-spacing: 1px;
    animation: fadePulse 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes rotateCoin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes glowPulse {
    0%,100% { filter: drop-shadow(0 0 8px rgba(240,209,92,0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(240,209,92,0.9)); }
}

@keyframes fadePulse {
    0%,100% { opacity: 0.6; }
    50% { opacity: 1; }
}