/* =========================================================================================================================== */
/*                                            🧩 EXPLORER – WALLET                                                             */
/*                                            📍 static/css/pages/explorer/wallet.css                                          */
/* =========================================================================================================================== */


/* FULLSCREEN OVERLAY */
.WALLET-coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;
    pointer-events: none;

    background: rgba(0, 0, 0, 0.35);
}

/* OVERLAY TEXT */
.WALLET-coming-soon-text {
    font-family: "Courier New", monospace;

    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;

    color: rgba(255, 0, 0, 0.9);

    text-transform: uppercase;
    letter-spacing: 12px;

    transform: rotate(-18deg);

    text-align: center;
    user-select: none;

    text-shadow:
        0 0 20px rgba(255, 0, 0, 1),
        0 0 40px rgba(255, 0, 0, 0.8),
        0 0 80px rgba(255, 0, 0, 0.5);
}

/* OVERLAY ANIMATION */
@keyframes WALLET-pulse {
    0%   { opacity: 0.7; }
    50%  { opacity: 1; }
    100% { opacity: 0.7; }
}

.WALLET-coming-soon-text {
    animation: WALLET-pulse 3.5s ease-in-out infinite;
}