#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    pointer-events: none;
}

.toast {
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    max-width: 320px;
    pointer-events: auto;
    animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toast.toast-out {
    animation: toastOut 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-success {
    background: rgba(15, 25, 15, 0.96);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.toast-error {
    background: rgba(25, 10, 10, 0.96);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.toast-info {
    background: rgba(10, 15, 25, 0.96);
    border: 1px solid rgba(88, 101, 242, 0.4);
    color: #ADC7FF;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(20px) scale(0.95); }
}
