/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    background: linear-gradient(135deg, rgba(10,10,20,0.95), rgba(20,20,35,0.95));
    border-radius: 15px;
    padding: 18px 24px;
    min-width: 320px;
    max-width: 450px;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: auto;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s ease;
}

.toast.removing {
    animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(450px);
}

.toast-icon {
    font-size: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.toast-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.toast-message {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.toast-close {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.toast-close:hover {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,1);
}

/* Toast Types */
.toast.success {
    border: 1px solid rgba(0,255,136,0.3);
}

.toast.success .toast-icon {
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0,255,136,0.8);
}

.toast.success .toast-title {
    color: var(--neon-green);
}

.toast.error {
    border: 1px solid rgba(255,64,64,0.3);
}

.toast.error .toast-icon {
    color: #ff4040;
    text-shadow: 0 0 15px rgba(255,64,64,0.8);
}

.toast.error .toast-title {
    color: #ff4040;
}

.toast.warning {
    border: 1px solid rgba(255,207,64,0.3);
}

.toast.warning .toast-icon {
    color: var(--neon-gold);
    text-shadow: 0 0 15px rgba(255,207,64,0.8);
}

.toast.warning .toast-title {
    color: var(--neon-gold);
}

.toast.info {
    border: 1px solid rgba(0,212,255,0.3);
}

.toast.info .toast-icon {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0,212,255,0.8);
}

.toast.info .toast-title {
    color: var(--neon-blue);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(450px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(450px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .toast-container {
        right: 15px;
        left: 15px;
        top: 80px;
    }

    .toast {
        min-width: auto;
        max-width: none;
        padding: 15px 18px;
    }

    .toast-icon {
        font-size: 24px;
    }

    .toast-title {
        font-size: 14px;
    }

    .toast-message {
        font-size: 12px;
    }
}
