.live-activity-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #ffffff, #f9fbff);
    border-radius: 14px;
    padding: 14px 16px;
    width: 300px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 9999;
    pointer-events: none;
}

/* Show animation */
.live-activity-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Avatar circle */
.lap-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2271b1, #5b9dff);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text content */
.lap-content {
    flex: 1;
    line-height: 1.35;
}

.lap-content strong {
    color: #1e1e1e;
    font-weight: 600;
}

.lap-action {
    color: #444;
    font-size: 14px;
}

.lap-time {
    font-size: 12px;
    color: #6b7280;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Small green dot = live feeling */
.lap-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

/* Mobile */
@media (max-width: 600px) {
    .live-activity-popup {
        right: 14px;
        left: 14px;
        width: auto;
        bottom: 16px;
    }
}
