/* Notifications.css */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    width: 340px;
    max-width: calc(100vw - 40px);
}

.love-notification {
    pointer-events: auto;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 77, 109, 0.3);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 77, 109, 0.05);
    transform: translateX(120%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.love-notification.show {
    transform: translateX(0);
}

.love-notification::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff4d6d, #ff8fa3);
}

.notif-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(45deg, #ff4d6d, #c9184a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.notif-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.notif-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.notif-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.notif-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #ff4d6d;
    width: 100%;
    transform-origin: left;
}

@keyframes notifProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .notification-container {
        top: 10px;
        right: 10px;
        width: calc(100vw - 20px);
    }
    .love-notification {
        padding: 12px;
    }
}
