/* ==========================================================================
   PREMIUM SUCCESS POPUP
   ========================================================================== */
.premium-alert {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #6366f1;
    border-left: 5px solid #6366f1;
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    margin-top: 1.5rem;
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.premium-alert i {
    font-size: 1.5rem;
    color: #6366f1;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}