/* ==========================================================================
   TOAST NOTIFICATIONS — БАР «МОДЕЛЬНЫЙ ПОКЕР»
   Стиль: Minimal Luxury Notification
   ========================================================================== */

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: rgba(18, 14, 25, 0.96);
    border: 1px solid var(--border-card);
    border-left: 3px solid var(--gold);
    color: var(--text-primary);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.3s ease, toastFadeOut 0.3s ease 3.7s forwards;
    pointer-events: auto;
    max-width: 360px;
}

.toast svg {
    color: var(--gold);
    flex-shrink: 0;
}

.toast.wine { border-left-color: var(--accent-mgr); }
.toast.wine svg { color: var(--accent-mgr); }

@keyframes toastSlideIn {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes toastFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(8px); }
}
