/* Toast Notification Floating Banner - Centered */
.toast-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    z-index: 9999;
    padding: 18px 36px;
    background: rgba(18, 21, 27, 0.95);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 183, 87, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    max-width: 90vw;
}

.toast-notification.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

