#pz-loader {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pz-loader.loaded {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.pz-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pz-loader-icon {
    width: 60px;
    height: 60px;
    position: relative;
}

.pz-loader-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1db985;
    animation: pz-orbit 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.pz-loader-dot:nth-child(1) { animation-delay: 0s; }
.pz-loader-dot:nth-child(2) { animation-delay: 0.3s; }
.pz-loader-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes pz-orbit {
    0% { transform: rotate(0deg) translateX(24px); opacity: 0; }
    25%, 75% { opacity: 1; }
    100% { transform: rotate(360deg) translateX(24px); opacity: 0; }
}

.pz-loader-text {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: #c8c8d8;
    letter-spacing: 0.1em;
    animation: pz-pulse 2s ease infinite;
}

@keyframes pz-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}