.custom-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--brand-color, #ffd700);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.toast-error {
    border-left-color: #ff4d4d;
}

.custom-toast-icon {
    font-size: 20px;
    margin-right: 15px;
}

.custom-toast-message {
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .custom-toast {
        top: auto;
        bottom: 30px;
        left: 20px;
        right: 20px;
        transform: translateY(120%);
    }
    
    .custom-toast.show {
        transform: translateY(0);
    }
}
