.fx-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.5);
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
    z-index: 999999;
    font-family: monospace;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(45, 212, 191, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.fx-toast:hover {
    border-color: #2DD4BF;
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.2);
}
.fx-toast-title {
    color: #2DD4BF;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 4px;
}
.fx-toast-desc {
    color: #94A3B8;
    font-size: 12px;
}
