/* ============================================
   PREMIUM LOCK & BLUR
   ============================================ */
.premium-blur {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.5s ease;
}

.premium-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(2px);
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.premium-lock-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--energy-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.lock-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lock-message {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 400px;
}
