/* ═══════════════════════════════════════════════════════════════
   VIP COMPONENT STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Modal Overlay */
.vip-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Modal Box */
.vip-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpModal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpModal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vip-modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-50);
    color: var(--primary-600);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-modal-content {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.vip-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.vip-modal-actions .btn {
    min-width: 120px;
}

/* Toast Notification */
.vip-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 50px);
    background: var(--bg-secondary);
    border: 1px solid var(--primary-500);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    font-weight: 600;
    opacity: 0;
    animation: toastUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes toastUp {
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .vip-modal {
        width: 85%;
        padding: 1.5rem;
    }

    .vip-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}