/* ===== TOAST NOTIFICATIONS ===== */
.toast-f12 {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #4dabf7 0%, #0277bd 100%) !important;
    color: white !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    max-width: 350px !important;
    min-width: 280px !important;
    font-family: 'Philosopher', serif !important;
    transform: translateX(400px) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
}

.toast-f12.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.toast-f12.show {
    /* Show state - visible */
    transform: translateX(0);
    opacity: 1;
}

.toast-404 {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 450px;
    min-width: 320px;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.toast-404.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-404 .close-btn,
.toast-f12 .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    user-select: none;
}

.toast-404 .close-btn:hover,
.toast-f12 .close-btn:hover {
    opacity: 1;
}
