/* /assets/css/notifications.css */
.ac-notif-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.ac-toast {
    pointer-events: auto;
    width: 300px;
    padding: 15px;
    border-radius: 10px;
    background: var(--ac-card);
    border: 1px solid var(--ac-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: toastIn 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes toastIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.ac-toast--achievement { border-color: var(--ac-accent1); } /* Or */
.ac-toast--story { border-color: var(--ac-accent2); }       /* Violet */
.ac-toast--live { border-color: var(--ac-danger); }         /* Rouge */

.ac-toast__title {
    font-family: var(--ac-font-h2);
    color: var(--ac-accent1);
    font-size: 1.1rem;
    margin: 0;
}

.ac-toast__msg {
    font-size: 0.9rem;
    color: var(--ac-muted);
}

.ac-notif-badge {
    background: var(--ac-danger);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
}