
#toast-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.toast-item {
    background: #000;
    color: #fff;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: toastIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 200px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.toast-item.success { border-left: 4px solid #00FF9D; }
.toast-item.error { border-left: 4px solid #FF3B30; }
.toast-item.info { border-left: 4px solid #0066CC; }

.toast-item.fade-out {
    animation: toastOut 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}
